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>
|
2020-10-09 20:09:30 +08:00
|
|
|
<artifactId>mall-pms</artifactId>
|
2020-10-05 23:54:51 +08:00
|
|
|
<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-31 23:47:11 +08:00
|
|
|
<artifactId>pms-api</artifactId>
|
2020-10-05 23:54:51 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2021-03-13 20:48:18 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
<version>${youlai.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-10-05 23:54:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
|
2020-10-05 23:54:51 +08:00
|
|
|
<dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-micro-spring-boot-starter</artifactId>
|
2020-10-05 23:54:51 +08:00
|
|
|
</dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
|
2020-11-22 15:47:28 +08:00
|
|
|
<dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
2021-03-13 20:48:18 +08:00
|
|
|
<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>
|
2020-11-22 15:47:28 +08:00
|
|
|
</dependency>
|
2021-02-25 20:08:21 +08:00
|
|
|
<dependency>
|
2021-03-13 20:48:18 +08:00
|
|
|
<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>
|
2021-03-12 01:18:30 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
2021-03-13 20:48:18 +08:00
|
|
|
<artifactId>spring-cloud-commons</artifactId>
|
|
|
|
<version>2.2.6.RELEASE</version>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
2020-10-05 23:54:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|