2020-10-05 23:54:51 +08:00
|
|
|
<?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>youlai-mall</artifactId>
|
|
|
|
<groupId>com.youlai</groupId>
|
2021-01-27 20:17:15 +08:00
|
|
|
<version>1.0.0</version>
|
2020-10-05 23:54:51 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-10-09 20:09:30 +08:00
|
|
|
<artifactId>mall-sms</artifactId>
|
2020-10-05 23:54:51 +08:00
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
2020-10-31 23:47:11 +08:00
|
|
|
<module>sms-api</module>
|
|
|
|
<module>sms-biz</module>
|
2020-10-05 23:54:51 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
2021-01-27 20:17:15 +08:00
|
|
|
<youlai.version>1.0.0</youlai.version>
|
2020-10-05 23:54:51 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2020-11-05 01:13:51 +08:00
|
|
|
<artifactId>common-core</artifactId>
|
2020-10-31 23:47:11 +08:00
|
|
|
<version>${youlai.version}</version>
|
2020-10-05 23:54:51 +08:00
|
|
|
</dependency>
|
2021-01-27 16:45:19 +08:00
|
|
|
|
|
|
|
<!-- spring cloud 2020.0.0内置的openfeign3.0.0和spring cloud alibaba框架nacos、seata冲突临时解决方案-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
<version>2.2.6.RELEASE</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-openfeign-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-commons</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter</artifactId>
|
|
|
|
<version>2.2.6.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-openfeign-core</artifactId>
|
|
|
|
<version>2.2.6.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-commons</artifactId>
|
|
|
|
<version>2.2.6.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-10-05 23:54:51 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|