46 lines
1.4 KiB
XML
46 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">
|
|
<parent>
|
|
<artifactId>wg-basic</artifactId>
|
|
<groupId>ink.wgink</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>module-sms</artifactId>
|
|
<description>消息模块,短信,邮件</description>
|
|
|
|
<dependencies>
|
|
<!-- email start -->
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
</dependency>
|
|
<!-- email end -->
|
|
|
|
<!-- json start -->
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
</dependency>
|
|
<!-- json end -->
|
|
|
|
<!-- tencent sms start -->
|
|
<dependency>
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
<version>3.1.501</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- tencent sms end -->
|
|
|
|
<dependency>
|
|
<groupId>ink.wgink</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |