2021-01-15 05:49:44 +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>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2021-03-14 10:15:17 +00:00
|
|
|
<artifactId>kernel-d-security</artifactId>
|
2022-08-26 10:03:12 +00:00
|
|
|
<version>7.2.5</version>
|
2021-01-15 05:49:44 +00:00
|
|
|
</parent>
|
|
|
|
|
2021-03-14 10:15:17 +00:00
|
|
|
<artifactId>security-sdk-captcha</artifactId>
|
2021-01-15 05:49:44 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2021-03-14 10:15:17 +00:00
|
|
|
<!--安全模块的api-->
|
2021-01-15 05:49:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2021-03-14 10:15:17 +00:00
|
|
|
<artifactId>security-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-15 05:49:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--缓存模块的api-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-15 05:49:44 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-memory</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-15 05:49:44 +00:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-redis</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-15 05:49:44 +00:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|