2019-05-13 11:12:41 +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>
|
2020-08-20 13:10:43 +00:00
|
|
|
|
|
|
|
<parent>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2021-01-29 12:54:33 +00:00
|
|
|
<artifactId>library-parent-pom</artifactId>
|
2022-01-27 18:11:10 +00:00
|
|
|
<version>1.0.2</version>
|
2020-08-20 13:10:43 +00:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
2019-05-13 11:12:41 +00:00
|
|
|
<artifactId>adapter-bank-spring-boot-starter</artifactId>
|
2022-01-27 18:11:10 +00:00
|
|
|
<version>0.0.1</version>
|
2019-05-13 11:12:41 +00:00
|
|
|
<packaging>jar</packaging>
|
2021-01-29 12:54:33 +00:00
|
|
|
<name>adapter-bank-spring-boot-starter</name>
|
|
|
|
<description>Spring boot starter for bank adapter</description>
|
2022-01-27 18:11:10 +00:00
|
|
|
<url>https://github.com/valitydev/adapter-bank-spring-boot-starter</url>
|
2021-01-29 12:54:33 +00:00
|
|
|
|
|
|
|
<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>
|
2022-01-27 18:11:10 +00:00
|
|
|
<organization>Vality</organization>
|
|
|
|
<organizationUrl>https://vality.dev</organizationUrl>
|
2021-01-29 12:54:33 +00:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
2022-01-27 18:11:10 +00:00
|
|
|
<connection>scm:git:git://github.com/valitydev/adapter-bank-spring-boot-starter.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/valitydev/adapter-bank-spring-boot-starter.git</developerConnection>
|
|
|
|
<url>https://github.com/valitydev/adapter-bank-spring-boot-starter/tree/master</url>
|
2021-01-29 12:54:33 +00:00
|
|
|
</scm>
|
2019-05-13 11:12:41 +00:00
|
|
|
|
|
|
|
<properties>
|
2022-01-27 18:11:10 +00:00
|
|
|
<maven.compiler.source>15</maven.compiler.source>
|
|
|
|
<maven.compiler.target>15</maven.compiler.target>
|
|
|
|
<java.version>15</java.version>
|
2020-08-20 13:10:43 +00:00
|
|
|
|
2022-01-27 18:11:10 +00:00
|
|
|
<adapter-client-lib.version>1.0.1</adapter-client-lib.version>
|
|
|
|
<adapter-thrift-lib.version>1.0.0</adapter-thrift-lib.version>
|
|
|
|
<adapter-common-lib.version>1.0.0</adapter-common-lib.version>
|
2020-08-20 13:10:43 +00:00
|
|
|
|
2022-01-27 18:11:10 +00:00
|
|
|
<damsel.version>1.544-dcd92dd</damsel.version>
|
|
|
|
<cds-proto.version>1.66-01353ce</cds-proto.version>
|
2020-08-20 13:10:43 +00:00
|
|
|
|
2022-01-27 18:11:10 +00:00
|
|
|
<spring-boot.version>2.6.3</spring-boot.version>
|
|
|
|
<woody.version>1.0.4</woody.version>
|
|
|
|
<geck.version>0.0.1</geck.version>
|
|
|
|
<lombok.version>1.18.22</lombok.version>
|
2020-08-20 13:10:43 +00:00
|
|
|
<slf4j-api.version>1.7.30</slf4j-api.version>
|
|
|
|
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
|
|
|
|
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version>
|
2022-01-27 18:11:10 +00:00
|
|
|
<error-mapping-java.version>1.0.0</error-mapping-java.version>
|
2020-08-20 13:10:43 +00:00
|
|
|
<junit.version>4.12</junit.version>
|
2019-05-13 11:12:41 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!--third party-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${javax.servlet-api.version}</version>
|
2019-05-13 11:12:41 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${slf4j-api.version}</version>
|
2019-05-13 11:12:41 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${lombok.version}</version>
|
2019-05-13 11:12:41 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-08-20 13:10:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<version>${hibernate-validator.version}</version>
|
|
|
|
</dependency>
|
2019-05-13 11:12:41 +00:00
|
|
|
|
|
|
|
<!--spring-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2021-04-01 14:44:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
2019-05-13 11:12:41 +00:00
|
|
|
|
2022-01-27 18:11:10 +00:00
|
|
|
<!--vality-->
|
2019-05-13 11:12:41 +00:00
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2019-05-13 11:12:41 +00:00
|
|
|
<artifactId>error-mapping-java</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${error-mapping-java.version}</version>
|
2019-05-23 15:40:05 +00:00
|
|
|
<scope>provided</scope>
|
2019-05-13 11:12:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality.woody</groupId>
|
2019-05-13 11:12:41 +00:00
|
|
|
<artifactId>woody-thrift</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${woody.version}</version>
|
2019-05-23 15:40:05 +00:00
|
|
|
<scope>provided</scope>
|
2019-05-13 11:12:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2019-05-13 11:12:41 +00:00
|
|
|
<artifactId>damsel</artifactId>
|
2019-05-16 10:16:21 +00:00
|
|
|
<version>${damsel.version}</version>
|
2019-05-23 15:40:05 +00:00
|
|
|
<scope>provided</scope>
|
2019-05-13 11:12:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2020-03-18 20:03:33 +00:00
|
|
|
<artifactId>cds-proto</artifactId>
|
|
|
|
<version>${cds-proto.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality.adapter-thrift-lib</groupId>
|
2020-03-18 20:03:33 +00:00
|
|
|
<artifactId>cds-utils</artifactId>
|
|
|
|
<version>${adapter-thrift-lib.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality.adapter-thrift-lib</groupId>
|
2019-05-13 11:12:41 +00:00
|
|
|
<artifactId>damsel-utils</artifactId>
|
2020-03-18 20:03:33 +00:00
|
|
|
<version>${adapter-thrift-lib.version}</version>
|
2019-05-13 11:12:41 +00:00
|
|
|
</dependency>
|
2019-05-21 14:05:34 +00:00
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality.geck</groupId>
|
2019-05-21 14:05:34 +00:00
|
|
|
<artifactId>serializer</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${geck.version}</version>
|
2019-05-21 14:05:34 +00:00
|
|
|
</dependency>
|
2019-05-28 15:42:14 +00:00
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality.adapter-client-lib</groupId>
|
2019-05-28 15:42:14 +00:00
|
|
|
<artifactId>hellgate-adapter-client</artifactId>
|
2020-03-18 20:03:33 +00:00
|
|
|
<version>${adapter-client-lib.version}</version>
|
2019-05-28 15:42:14 +00:00
|
|
|
</dependency>
|
2019-06-11 14:38:03 +00:00
|
|
|
<dependency>
|
2022-01-27 18:11:10 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2019-06-11 14:38:03 +00:00
|
|
|
<artifactId>adapter-common-lib</artifactId>
|
2019-12-16 11:01:03 +00:00
|
|
|
<version>${adapter-common-lib.version}</version>
|
2019-06-11 14:38:03 +00:00
|
|
|
</dependency>
|
2019-05-28 15:42:14 +00:00
|
|
|
|
2019-05-14 16:05:33 +00:00
|
|
|
<!-- test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-08-20 13:10:43 +00:00
|
|
|
<version>${junit.version}</version>
|
2019-05-14 16:05:33 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-13 11:12:41 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|