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>
|
2022-01-19 13:01:22 +00:00
|
|
|
<version>1.0.2</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>magista-dsl</artifactId>
|
2022-01-19 13:01:22 +00:00
|
|
|
<version>1.0.3</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2022-01-13 20:14:11 +00:00
|
|
|
<name>Magista DSL</name>
|
|
|
|
<description>DSL library for Magista services</description>
|
|
|
|
<url>https://github.com/valitydev/magista-dsl</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<email>devs@vality.dev</email>
|
|
|
|
<organization>Vality</organization>
|
|
|
|
<organizationUrl>https://vality.dev</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/valitydev/magista-dsl.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/valitydev/magista-dsl.git</developerConnection>
|
|
|
|
<url>https://github.com/valitydev/magista-dsl/tree/master</url>
|
|
|
|
</scm>
|
|
|
|
|
2018-11-16 13:56:30 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
2018-11-20 13:25:50 +00:00
|
|
|
<artifactId>common</artifactId>
|
2022-01-13 20:07:54 +00:00
|
|
|
<version>0.6.12</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-01-13 20:07:54 +00:00
|
|
|
<version>1.7.33</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2022-01-13 20:07:54 +00:00
|
|
|
<version>2.13.1</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2022-01-13 20:07:54 +00:00
|
|
|
<version>4.13.2</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>
|
2022-01-13 20:07:54 +00:00
|
|
|
<version>1.7.33</version>
|
2018-11-16 13:56:30 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-01-13 20:14:11 +00:00
|
|
|
</project>
|