2021-10-29 04:04:41 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2021-10-29 04:04:41 +00:00
|
|
|
<artifactId>kernel-d-security</artifactId>
|
2024-11-11 14:44:24 +00:00
|
|
|
<version>8.3.2</version>
|
2021-10-29 04:04:41 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>security-sdk-clear-threadlocal</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--安全模块的api-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2021-10-29 04:04:41 +00:00
|
|
|
<artifactId>security-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|