2021-01-13 15:47:17 +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-02-19 10:53:16 +00:00
|
|
|
|
<artifactId>kernel-d-security</artifactId>
|
2021-11-25 01:57:50 +00:00
|
|
|
|
<version>7.1.6</version>
|
2021-02-19 10:53:16 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-01-13 15:47:17 +00:00
|
|
|
|
</parent>
|
|
|
|
|
|
2021-02-19 10:53:16 +00:00
|
|
|
|
<artifactId>security-spring-boot-starter</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
2021-01-13 15:47:17 +00:00
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2021-02-19 10:53:16 +00:00
|
|
|
|
<!--xss模块-->
|
2021-01-13 15:47:17 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2021-02-19 10:53:16 +00:00
|
|
|
|
<artifactId>security-sdk-xss</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-01-13 15:47:17 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-10-29 04:04:41 +00:00
|
|
|
|
<!--threadLocal清除器-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-clear-threadlocal</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-03-14 10:15:17 +00:00
|
|
|
|
<!--图形验证码模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-captcha</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-03-14 10:15:17 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--count模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-count</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-03-14 10:15:17 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--黑白名单校验-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-black-white</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-03-14 10:15:17 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-03-23 05:57:47 +00:00
|
|
|
|
<!--请求响应加密解密模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-request-encrypt-and-decode</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2021-03-23 05:57:47 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-07-05 06:16:11 +00:00
|
|
|
|
<!--数据库加密解密模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-database-field</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-06-08 07:23:30 +00:00
|
|
|
|
<!--CORS过滤器,默认不开启-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>security-sdk-cors</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-01-13 15:47:17 +00:00
|
|
|
|
</dependencies>
|
2021-02-19 10:53:16 +00:00
|
|
|
|
|
2021-01-13 15:47:17 +00:00
|
|
|
|
</project>
|