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>
|
2024-03-14 09:56:57 +00:00
|
|
|
<version>${revision}</version>
|
2024-03-06 10:17:09 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>cs-database</artifactId>
|
|
|
|
<name>cs-database</name>
|
|
|
|
<description>cs-database</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2024-03-14 09:21:58 +00:00
|
|
|
<properties>
|
2024-03-14 09:56:57 +00:00
|
|
|
<java.version>${cs-package.java.version}</java.version>
|
2024-03-14 09:21:58 +00:00
|
|
|
</properties>
|
|
|
|
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
</dependency>
|
2024-03-07 07:00:17 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2024-03-06 10:17:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mybatis-flex</groupId>
|
|
|
|
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mybatis-flex</groupId>
|
|
|
|
<artifactId>mybatis-flex-processor</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cf.cs</groupId>
|
|
|
|
<artifactId>cs-base</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2024-03-12 07:12:18 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/rbac/*.*</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2024-03-06 10:17:09 +00:00
|
|
|
<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>
|
2024-03-08 10:04:03 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2024-03-11 09:57:39 +00:00
|
|
|
<configuration>
|
|
|
|
<argLine>-Dspring.config.location=file:${project.parent.basedir}/config/</argLine>
|
|
|
|
</configuration>
|
2024-03-08 10:04:03 +00:00
|
|
|
</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 10:17:09 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|