1234567891011121314151617181920212223242526272829303132333435 |
- <?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>jjt</artifactId>
- <groupId>com.jjt</groupId>
- <version>3.8.6</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jjt-system</artifactId>
- <description>
- system系统模块
- </description>
- <dependencies>
- <!--腾讯短信-->
- <dependency>
- <groupId>com.tencentcloudapi</groupId>
- <artifactId>tencentcloud-sdk-java</artifactId>
- <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
- <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
- <version>3.1.899</version>
- </dependency>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.jjt</groupId>
- <artifactId>jjt-common</artifactId>
- </dependency>
- </dependencies>
- </project>
|