131 lines
4.3 KiB
XML
131 lines
4.3 KiB
XML
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.3.5</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
<groupId>com.yeledui</groupId>
|
||
|
<artifactId>ysePay</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>ysePay</name>
|
||
|
<description>ysePay</description>
|
||
|
<url/>
|
||
|
<licenses>
|
||
|
<license/>
|
||
|
</licenses>
|
||
|
<developers>
|
||
|
<developer/>
|
||
|
</developers>
|
||
|
<scm>
|
||
|
<connection/>
|
||
|
<developerConnection/>
|
||
|
<tag/>
|
||
|
<url/>
|
||
|
</scm>
|
||
|
<properties>
|
||
|
<java.version>17</java.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>fastjson</artifactId>
|
||
|
<version>2.0.12</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpclient</artifactId>
|
||
|
<version>4.5.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-httpclient</groupId>
|
||
|
<artifactId>commons-httpclient</artifactId>
|
||
|
<version>3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>3.14.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
<artifactId>httpmime</artifactId>
|
||
|
<version>4.5.13</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.baomidou</groupId>
|
||
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
||
|
<version>3.6.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-api</artifactId>
|
||
|
<version>2.21.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.cfca</groupId>
|
||
|
<artifactId>logback-cfca-jdk1.6</artifactId>
|
||
|
<version>4.1.1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/cfca-logback-4.2.1.0.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cfca-sadk</groupId>
|
||
|
<artifactId>cfca-sadk</artifactId>
|
||
|
<version>3.6.2.1</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/cfca-sadk-3.6.2.1.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.32</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>22</source>
|
||
|
<target>22</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|