39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.czg</groupId>
|
|
<artifactId>cash-common</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<name>satoken公共模块</name>
|
|
<description>satoken</description>
|
|
<artifactId>cash-common-sa-token</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.czg</groupId>
|
|
<artifactId>cash-common-tools</artifactId>
|
|
</dependency>
|
|
<!-- sa-token 的漏洞的依赖处理 -->
|
|
<!-- start -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
<version>11.0.2</version>
|
|
</dependency>
|
|
<!-- end -->
|
|
</dependencies>
|
|
</project>
|