Merge remote-tracking branch 'origin/master'

# Conflicts:
#	cash-common/cash-common-tools/pom.xml
#	pom.xml
This commit is contained in:
Tankaikai
2025-02-08 09:56:18 +08:00
8 changed files with 38 additions and 14 deletions

30
pom.xml
View File

@@ -44,11 +44,41 @@
<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>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>