2025-10-15 16:16:37 +08: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<groupId>com.sdm</groupId>
|
|
|
|
|
|
<artifactId>SDM</artifactId>
|
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<name>SDM</name>
|
|
|
|
|
|
<modules>
|
|
|
|
|
|
<module>gateway2</module>
|
|
|
|
|
|
<module>gateway</module>
|
|
|
|
|
|
<module>project</module>
|
|
|
|
|
|
<module>task</module>
|
|
|
|
|
|
<module>performance</module>
|
|
|
|
|
|
<module>capability</module>
|
|
|
|
|
|
<module>approve</module>
|
|
|
|
|
|
<module>data</module>
|
|
|
|
|
|
<module>pbs</module>
|
|
|
|
|
|
<module>system</module>
|
2025-11-12 13:41:29 +08:00
|
|
|
|
<module>submit</module>
|
2025-10-15 16:16:37 +08:00
|
|
|
|
<module>common</module>
|
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
|
|
<!--引入Spring Boot项目,子项目都是这个版本-->
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
|
<version>3.3.5</version>
|
|
|
|
|
|
<relativePath/>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<spring-boot.version>3.3.5</spring-boot.version>
|
|
|
|
|
|
<java.version>17</java.version>
|
|
|
|
|
|
<mybatis.plus.version>3.5.3.1</mybatis.plus.version>
|
|
|
|
|
|
<mybatis-plus-boot.version>3.5.9</mybatis-plus-boot.version>
|
|
|
|
|
|
<mysql.version>8.4.0</mysql.version>
|
|
|
|
|
|
<fastjson.version>2.0.50</fastjson.version>
|
|
|
|
|
|
<nacos.version>2023.0.1.3</nacos.version>
|
|
|
|
|
|
<spring-cloud.version>2023.0.3</spring-cloud.version>
|
|
|
|
|
|
<easyexcel.version>3.3.4</easyexcel.version>
|
|
|
|
|
|
<swagger.version>2.6.0</swagger.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 对子项目依赖进行版本管理 子模块引用无需声明版本号 -->
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
|
<version>${mybatis.plus.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
|
<version>${nacos.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<!--对所有的子项目都生效,子项目不需要再次引入了-->
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 热部署 本地起多个微服务会端口冲突报错Unable to start LiveReload server,默认使用35729端口 -->
|
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>xmlunit-core</artifactId>
|
|
|
|
|
|
<groupId>org.xmlunit</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<artifactId>xmlunit-core</artifactId>
|
|
|
|
|
|
<groupId>org.xmlunit</groupId>
|
|
|
|
|
|
<version>2.10.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
<version>3.14.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- mybatis-plus -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
|
|
<version>${mybatis-plus-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
|
<artifactId>fastjson2-extension</artifactId>
|
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
|
<artifactId>fastjson2-extension-spring6</artifactId>
|
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
|
|
<version>${spring-cloud.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
|
<version>${nacos.version}</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>archaius-core</artifactId>
|
|
|
|
|
|
<groupId>com.netflix.archaius</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>servo-core</artifactId>
|
|
|
|
|
|
<groupId>com.netflix.servo</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>nacos-client</artifactId>
|
|
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>spring-cloud-commons</artifactId>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>spring-cloud-context</artifactId>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
|
|
<artifactId>nacos-client</artifactId>
|
|
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
|
<!-- <artifactId>snakeyaml</artifactId>-->
|
|
|
|
|
|
<!-- <groupId>org.yaml</groupId>-->
|
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<version>4.5.14</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
|
|
<version>4.5</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-loadbalancer</artifactId>
|
|
|
|
|
|
<version>4.1.4</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
|
|
<version>0.12.6</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<version>${easyexcel.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- ssh -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ch.ethz.ganymed</groupId>
|
|
|
|
|
|
<artifactId>ganymed-ssh2</artifactId>
|
|
|
|
|
|
<version>262</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.yaml</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>snakeyaml</artifactId>-->
|
|
|
|
|
|
<!-- <version>2.0</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
|
|
<version>5.0.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
|
<version>4.2.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 加解密 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
|
|
|
|
<version>1.78.1</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
|
<version>2.9.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
|
<version>2.9.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>1.4.6</version>
|
|
|
|
|
|
</dependency>
|
2025-10-30 11:04:44 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>5.8.38</version>
|
|
|
|
|
|
</dependency>
|
2025-10-15 16:16:37 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
<version>3.11.0</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<parameters>true</parameters>
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
|
<version>2.19.1</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<!-- 默认关掉单元测试,不用手动关闭了 -->
|
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|