90 lines
3.2 KiB
XML
90 lines
3.2 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>cf-framework-parent</artifactId>
|
||
|
<groupId>com.cf</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<relativePath>../../cf-framework-parent/pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>cf-sms-service</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.cf</groupId>
|
||
|
<artifactId>cf-framework-utils</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.aliyun</groupId>
|
||
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
|
<version>4.1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.cf</groupId>
|
||
|
<artifactId>cf-sms-interface</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.cf</groupId>
|
||
|
<artifactId>cf-sms-dao</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Dubbo Spring Boot Starter -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.dubbo</groupId>
|
||
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
||
|
<version>2.7.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.dubbo</groupId>
|
||
|
<artifactId>dubbo</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.dubbo</groupId>
|
||
|
<artifactId>dubbo-dependencies-zookeeper</artifactId>
|
||
|
<type>pom</type>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.github.tobato/fastdfs-client -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.tobato</groupId>
|
||
|
<artifactId>fastdfs-client</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|