IntegrateService/pom.xml

74 lines
2.5 KiB
XML
Raw Normal View History

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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.cf.cs</groupId>
<artifactId>IntegrateService</artifactId>
<version>0.0.1-dev</version>
<name>IntegrateService</name>
<description>IntegrateService</description>
<packaging>pom</packaging>
<properties>
<cs-package.version>0.0.1-dev</cs-package.version>
<java.version>17</java.version>
2024-03-07 09:05:17 +00:00
<sonar.projectKey>cmhi_integrateservice_c87e350f-7272-46e2-b9c3-68d9a9a30a9d</sonar.projectKey>
<sonar.projectName>IntegrateService</sonar.projectName>
2024-03-07 09:46:19 +00:00
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
2024-03-07 09:05:17 +00:00
<sonar.qualitygate.wait>true</sonar.qualitygate.wait>
2024-03-06 07:32:55 +00:00
</properties>
<modules>
<module>cs-base</module>
2024-03-06 08:58:43 +00:00
<module>cs-crypto</module>
2024-03-06 10:17:09 +00:00
<module>cs-protocol</module>
<module>cs-database</module>
2024-03-07 08:26:47 +00:00
<module>cs-authentication</module>
2024-03-06 07:32:55 +00:00
<module>cs-restful</module>
2024-03-08 08:52:33 +00:00
<module>cs-integrate-test</module>
2024-03-06 07:32:55 +00:00
</modules>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
<version>2.2.19</version>
<scope>compile</scope>
</dependency>
2024-03-12 10:05:00 +00:00
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
</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
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
2024-03-06 07:32:55 +00:00
</plugin>
</plugins>
</build>
</project>