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>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2021-01-17 04:07:33 +00:00
|
|
|
<artifactId>kernel-d-sms</artifactId>
|
2024-11-11 14:44:24 +00:00
|
|
|
<version>8.3.2</version>
|
2021-01-17 04:07:33 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2020-12-11 10:18:48 +00:00
|
|
|
</parent>
|
|
|
|
|
2021-01-16 16:35:27 +00:00
|
|
|
<artifactId>sms-business-validation</artifactId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2021-01-15 10:57:43 +00:00
|
|
|
<!--系统管理的api-->
|
2020-12-11 10:18:48 +00:00
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2023-07-12 02:22:03 +00:00
|
|
|
<artifactId>system-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--资源api模块-->
|
|
|
|
<!--用在资源控制器,资源扫描上-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>scanner-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2021-01-15 10:57:43 +00:00
|
|
|
<!--短信发送模块api-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2021-01-15 10:57:43 +00:00
|
|
|
<artifactId>sms-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2021-01-15 10:57:43 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--参数校验模块-->
|
|
|
|
<!--用在控制器,参数校验-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +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-03-14 10:15:17 +00:00
|
|
|
<!--安全模块模块-->
|
|
|
|
<!--发送短信前的验证码校验,防止暴力发送短信-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.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-03-14 10:15:17 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--数据库sdk-->
|
|
|
|
<!--数据库dao框架-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|