mirror of
https://gitee.com/dromara/sms4j.git
synced 2025-12-06 17:08:40 +08:00
74 lines
2.4 KiB
XML
74 lines
2.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>kim.wind</groupId>
|
|
<artifactId>sms_aggregation</artifactId>
|
|
<version>1.0.1</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>sms-aggregation-spring-boot-starter</artifactId>
|
|
<name>sms-aggregation-spring-boot-starter</name>
|
|
<description>sms-aggregation-spring-boot-starter</description>
|
|
<version>1.0.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>kim.wind</groupId>
|
|
<artifactId>sms-aggregation-aliyun</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>kim.wind</groupId>
|
|
<artifactId>sms-aggregation-tencent</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>kim.wind</groupId>
|
|
<artifactId>sms-aggregation-unisms</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>kim.wind</groupId>
|
|
<artifactId>sms-aggregation-yunpian</artifactId>
|
|
</dependency>
|
|
|
|
<!--aop依赖-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|