2024-03-06 07:32:55 +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-restful</artifactId>
|
|
|
|
<name>cs-restful</name>
|
|
|
|
<description>cs-restful-api</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2024-03-06 10:17:09 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2024-03-06 07:32:55 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
|
</dependency>
|
2024-03-06 08:58:43 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-database</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-protocol</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-crypto</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-services</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-06 08:58:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-web</artifactId>
|
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-06 07:32:55 +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 07:32:55 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|