2017-03-02 14:32:58 +00:00
|
|
|
<?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">
|
2017-03-06 15:36:33 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2017-03-02 14:32:58 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
2017-03-06 15:36:33 +00:00
|
|
|
<artifactId>parent</artifactId>
|
2021-09-03 14:27:11 +00:00
|
|
|
<version>0.6.12</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2017-03-02 14:32:58 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>migrator</artifactId>
|
|
|
|
|
2021-09-03 14:27:11 +00:00
|
|
|
<properties>
|
|
|
|
<checkstyle.config.suppressions.path>./src/main/resources/checkstyle/checkstyle-suppressions.xml</checkstyle.config.suppressions.path>
|
|
|
|
</properties>
|
|
|
|
|
2017-03-02 14:32:58 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
|
|
<artifactId>serializer</artifactId>
|
|
|
|
</dependency>
|
2017-08-10 09:44:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2017-03-17 12:47:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-03-02 14:32:58 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2017-03-21 12:06:52 +00:00
|
|
|
</project>
|