You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.8 KiB
XML
83 lines
2.8 KiB
XML
1 year ago
|
<?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">
|
||
|
<parent>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-framework</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>${project.artifactId}</name>
|
||
|
<description>短信拓展,支持阿里云、腾讯云</description>
|
||
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-common</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Spring 核心 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 监控相关 -->
|
||
|
<dependency>
|
||
|
<groupId>io.opentracing</groupId>
|
||
|
<artifactId>opentracing-util</artifactId> <!-- aliyun 短信需要,进行链路追踪 -->
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Test 测试相关 -->
|
||
|
<dependency>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 工具类相关 -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<optional>true</optional> <!-- 设置为可选,因为使用到 @VisibleForTesting 用于单元测试 -->
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-core</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>jakarta.validation</groupId>
|
||
|
<artifactId>jakarta.validation-api</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 三方云服务相关 -->
|
||
|
|
||
|
<!-- SMS SDK begin -->
|
||
|
<dependency>
|
||
|
<groupId>com.aliyun</groupId>
|
||
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.aliyun</groupId>
|
||
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.tencentcloudapi</groupId>
|
||
|
<artifactId>tencentcloud-sdk-java-sms</artifactId>
|
||
|
</dependency>
|
||
|
<!-- SMS SDK end -->
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|