2020-04-17 08:33:29 +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>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>parent</artifactId>
|
2020-10-06 08:33:50 +00:00
|
|
|
<version>1.0.5</version>
|
2020-04-17 08:33:29 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<artifactId>three-ds-server-domain-lib</artifactId>
|
2021-02-03 11:20:08 +00:00
|
|
|
<version>1.2.3</version>
|
2020-12-10 09:22:17 +00:00
|
|
|
<url>https://github.com/rbkmoney/three-ds-server-domain-lib</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>
|
|
|
|
<organization>RBK.money</organization>
|
|
|
|
<organizationUrl>https://rbk.money</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/rbkmoney/three-ds-server-domain-lib.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/rbkmoney/three-ds-server-domain-lib.git</developerConnection>
|
|
|
|
<url>https://github.com/rbkmoney/three-ds-server-domain-lib/tree/master</url>
|
|
|
|
</scm>
|
2020-04-17 08:33:29 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>8</java.version>
|
|
|
|
<lombok.version>1.18.4</lombok.version>
|
2020-10-06 08:33:50 +00:00
|
|
|
<jackson.version>2.11.0</jackson.version>
|
|
|
|
<spring-core.version>5.2.9.RELEASE</spring-core.version>
|
2020-04-17 08:33:29 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--rbkmoney-->
|
|
|
|
|
|
|
|
<!--spring-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2020-10-06 08:33:50 +00:00
|
|
|
<version>${spring-core.version}</version>
|
2020-04-17 08:33:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--third party-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2020-10-06 08:33:50 +00:00
|
|
|
<version>${jackson.version}</version>
|
2020-04-17 08:33:29 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2020-10-06 08:33:50 +00:00
|
|
|
<version>${jackson.version}</version>
|
2020-04-17 08:33:29 +00:00
|
|
|
</dependency>
|
2020-10-06 09:43:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
2020-04-17 08:33:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>2.0.1.Final</version>
|
|
|
|
</dependency>
|
2020-10-06 09:43:13 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.8.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-04-17 08:33:29 +00:00
|
|
|
<!--test-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-12-10 11:47:37 +00:00
|
|
|
<version>4.13.1</version>
|
2020-04-17 08:33:29 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-12-10 09:22:17 +00:00
|
|
|
|
2020-04-17 08:33:29 +00:00
|
|
|
</project>
|