mirror of https://gitee.com/stylefeng/roses
44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<?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>7.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-sdk-black-white</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
|
|
<!--技术校验器,为了限制某个数据一定时间内的反问频次-->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>validator-sdk-count</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- captcha图形验证码 -->
|
|
<dependency>
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
<artifactId>validator-sdk-captcha</artifactId>
|
|
<version>7.0.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|