geck/common/pom.xml
Margarita b2e1f094dd
Adding handling for Optional (#33)
* Adding handling for Optional in dev.vality.geck.serializer.kit.tbase.TBaseProcessor#process()

* Bump geck version
2024-08-16 11:00:16 +03:00

37 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.vality.geck</groupId>
<artifactId>parent</artifactId>
<version>1.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>common</artifactId>
<properties>
<checkstyle.config.suppressions.path>./src/main/resources/checkstyle/checkstyle-suppressions.xml</checkstyle.config.suppressions.path>
</properties>
<dependencies>
<dependency>
<groupId>dev.vality.woody</groupId>
<artifactId>libthrift</artifactId>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>