magista-dsl/pom.xml

55 lines
1.7 KiB
XML
Raw Normal View History

2018-11-16 13:56:30 +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">
<modelVersion>4.0.0</modelVersion>
<parent>
2022-01-13 11:36:32 +00:00
<groupId>dev.vality</groupId>
<artifactId>library-parent-pom</artifactId>
<version>1.0.0</version>
2018-11-16 13:56:30 +00:00
</parent>
<artifactId>magista-dsl</artifactId>
2021-01-13 11:17:18 +00:00
<version>1.0.1</version>
2018-11-16 13:56:30 +00:00
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.rbkmoney.geck</groupId>
<artifactId>common</artifactId>
2021-01-13 11:17:18 +00:00
<version>0.6.11</version>
2018-11-16 13:56:30 +00:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2021-01-13 11:17:18 +00:00
<version>1.7.30</version>
2018-11-16 13:56:30 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2021-01-13 11:17:18 +00:00
<version>2.12.0</version>
2018-11-16 13:56:30 +00:00
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2021-01-13 11:17:18 +00:00
<version>4.13.1</version>
2018-11-16 13:56:30 +00:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.21</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>