IntegrateService/cs-crypto/pom.xml

66 lines
2.2 KiB
XML
Raw Normal View History

2024-03-06 08:58:43 +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>${revision}</version>
2024-03-06 08:58:43 +00:00
</parent>
<artifactId>cs-crypto</artifactId>
<name>cs-crypto</name>
<description>cs-crypto</description>
<packaging>jar</packaging>
<properties>
<java.version>${cs-package.java.version}</java.version>
</properties>
2024-03-06 08:58:43 +00:00
<dependencies>
2024-03-06 10:40:49 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2024-03-06 08:58:43 +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 08:58:43 +00:00
</plugin>
2024-03-08 10:04:03 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
2024-03-12 10:05:00 +00:00
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
2024-03-06 08:58:43 +00:00
</plugins>
</build>
</project>