2020-12-11 10:18:48 +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>
|
|
|
|
<artifactId>kernel-d-validator</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>validator-spring-boot-starter</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--计数校验器在线管理-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-business-count</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--黑名单和白名单限制-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-sdk-black-white</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--技术校验器,为了限制某个数据一定时间内的反问频次-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-sdk-count</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-01-13 15:47:17 +00:00
|
|
|
<!--XSS安全过滤器-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-sdk-xss</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-01-15 05:49:44 +00:00
|
|
|
<!-- captcha图形验证码 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-sdk-captcha</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|