2024-03-06 10:17:09 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>IntegrateService</artifactId>
|
|
|
|
<version>0.0.1-dev</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>cs-protocol</artifactId>
|
|
|
|
<name>cs-protocol</name>
|
|
|
|
<description>cs-protocol</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-03-08 07:01:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.15.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-base</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-08 07:01:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-crypto</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-06 10:17:09 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2024-03-06 10:40:49 +00:00
|
|
|
<configuration>
|
|
|
|
<classifier>exec</classifier>
|
|
|
|
</configuration>
|
2024-03-06 10:17:09 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|