mirror of
https://github.com/valitydev/adapter-bank-spring-boot-starter-test.git
synced 2024-11-06 02:05:17 +00:00
120 lines
4.3 KiB
XML
120 lines
4.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>dev.vality</groupId>
|
|
<artifactId>library-parent-pom</artifactId>
|
|
<version>1.0.2</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<artifactId>adapter-bank-spring-boot-starter-test</artifactId>
|
|
<version>0.0.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Adapter bank spring boot starter test</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>15</maven.compiler.source>
|
|
<maven.compiler.target>15</maven.compiler.target>
|
|
<java.version>15</java.version>
|
|
|
|
<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>
|
|
|
|
<damsel.version>1.544-dcd92dd</damsel.version>
|
|
|
|
<spring-boot.version>2.6.3</spring-boot.version>
|
|
<woody.version>1.0.4</woody.version>
|
|
<lombok.version>1.18.22</lombok.version>
|
|
<slf4j.version>1.7.35</slf4j.version>
|
|
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
|
|
<error-mapping-java.version>1.0.0</error-mapping-java.version>
|
|
<junit.version>4.12</junit.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--third party-->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>${javax.servlet-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--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>
|
|
|
|
<!--dev.vality-->
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>error-mapping-java</artifactId>
|
|
<version>${error-mapping-java.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality.woody</groupId>
|
|
<artifactId>woody-thrift</artifactId>
|
|
<version>${woody.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality</groupId>
|
|
<artifactId>damsel</artifactId>
|
|
<version>${damsel.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dev.vality.adapter-thrift-lib</groupId>
|
|
<artifactId>damsel-utils</artifactId>
|
|
<version>${adapter-thrift-lib.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- test -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|