144 lines
4.9 KiB
XML
144 lines
4.9 KiB
XML
<?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.3.6</version>
|
||
</parent>
|
||
|
||
<groupId>com.czg</groupId>
|
||
<artifactId>cash</artifactId>
|
||
<version>1.0.0</version>
|
||
<packaging>pom</packaging>
|
||
<description>银收客</description>
|
||
|
||
<organization>
|
||
<name>陕西超掌柜科技有限公司</name>
|
||
<url>https://www.sxczgkj.cn</url>
|
||
</organization>
|
||
|
||
<modules>
|
||
<module>cash-api</module>
|
||
<module>cash-common</module>
|
||
<module>cash-service</module>
|
||
<module>cash-sdk</module>
|
||
<module>cash-dependencies</module>
|
||
<module>cash-api/api-config</module>
|
||
<module>cash-common/cash-common-redis</module>
|
||
</modules>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<java.version>21</java.version>
|
||
<!--
|
||
<spring.cloud.version>2023.0.3</spring.cloud.version>
|
||
<spring.cloud.alibaba.version>2023.0.1.2</spring.cloud.alibaba.version>
|
||
-->
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-logging</artifactId>
|
||
</dependency>
|
||
<!-- spring-boot-starter-test 的漏洞的依赖处理 -->
|
||
<!-- start -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
<!-- 排除有漏洞的依赖 -->
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.xmlunit</groupId>
|
||
<artifactId>xmlunit-core</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>net.minidev</groupId>
|
||
<artifactId>json-smart</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.minidev</groupId>
|
||
<artifactId>json-smart</artifactId>
|
||
<version>2.4.11</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.xmlunit</groupId>
|
||
<artifactId>xmlunit-core</artifactId>
|
||
<version>2.10.0</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<!-- end -->
|
||
<!--
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
||
</dependency>
|
||
-->
|
||
<!-- maven下载不到的包放这里,下载完成后注释掉 -->
|
||
|
||
<!-- maven下载不到的包放这里,下载完成后注释掉 -->
|
||
</dependencies>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.czg</groupId>
|
||
<artifactId>cash-dependencies</artifactId>
|
||
<version>1.0.0</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>public</id>
|
||
<name>aliyun nexus</name>
|
||
<url>https://maven.aliyun.com/repository/public/</url>
|
||
<releases>
|
||
<enabled>true</enabled>
|
||
</releases>
|
||
</repository>
|
||
</repositories>
|
||
<pluginRepositories>
|
||
<pluginRepository>
|
||
<id>public</id>
|
||
<name>aliyun nexus</name>
|
||
<url>https://maven.aliyun.com/repository/public/</url>
|
||
<releases>
|
||
<enabled>true</enabled>
|
||
</releases>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</pluginRepository>
|
||
</pluginRepositories>
|
||
|
||
</project>
|