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>
|
2024-03-08 02:45:00 +00:00
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
<version>1.5.0.Final</version>
|
2024-03-06 10:17:09 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-03-08 02:45:00 +00:00
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
<version>1.5.5.Final</version>
|
2024-03-06 10:17:09 +00:00
|
|
|
</dependency>
|
2024-03-08 02:45:00 +00:00
|
|
|
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
2024-03-08 02:45:00 +00:00
|
|
|
<artifactId>cs-database</artifactId>
|
2024-03-06 10:17:09 +00:00
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
2024-03-08 02:45:00 +00:00
|
|
|
<artifactId>cs-protocol</artifactId>
|
2024-03-06 10:17:09 +00:00
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-06 08:58:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
2024-03-08 02:45:00 +00:00
|
|
|
<artifactId>cs-crypto</artifactId>
|
2024-03-06 08:58:43 +00:00
|
|
|
<version>${cs-package.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-03-07 08:26:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-authentication</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>
|
2024-03-07 08:26:47 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
|
|
<version>4.9.10</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>get-the-git-infos</id>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
<verbose>false</verbose>
|
|
|
|
<offline>true</offline>
|
|
|
|
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat>
|
|
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
|
|
<generateGitPropertiesFilename>${project.basedir}/src/main/resources/git.properties
|
|
|
|
</generateGitPropertiesFilename>
|
|
|
|
<excludeProperties>
|
|
|
|
<excludeProperty>git.commit.message.*</excludeProperty>
|
|
|
|
<excludeProperty>git.commit.user.*</excludeProperty>
|
|
|
|
<excludeProperty>git.remote.origin.*</excludeProperty>
|
|
|
|
</excludeProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-03-06 07:32:55 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|