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>
|
2022-03-07 08:25:46 +00:00
|
|
|
<version>7.2.2</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>validator-spring-boot-starter</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2021-03-15 08:06:00 +00:00
|
|
|
<!--参数校验api-->
|
2020-12-11 10:18:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2021-03-15 08:06:00 +00:00
|
|
|
<artifactId>validator-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2021-09-24 09:40:45 +00:00
|
|
|
<!--参数校验-校验table内编码唯一的-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-api-table-unique</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-03-15 08:06:00 +00:00
|
|
|
<!--web模块-->
|
2020-12-11 10:18:48 +00:00
|
|
|
<dependency>
|
2021-03-15 08:06:00 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2021-01-15 05:49:44 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|