2020-09-01 00:30:35 +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-09-22 20:00:53 +08:00
|
|
|
<artifactId>youlai-admin</artifactId>
|
2020-09-01 00:30:35 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
2021-06-19 12:36:51 +08:00
|
|
|
<version>2.0.0</version>
|
2020-09-01 00:30:35 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-10-31 23:47:11 +08:00
|
|
|
<artifactId>admin-api</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
2021-06-19 14:27:12 +08:00
|
|
|
<youlai.version>2.0.0</youlai.version>
|
2020-10-31 23:47:11 +08:00
|
|
|
</properties>
|
2020-09-01 00:30:35 +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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-web</artifactId>
|
|
|
|
<version>${youlai.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-30 15:05:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
2021-06-07 01:49:41 +08:00
|
|
|
<optional>true</optional>
|
2020-09-30 15:05:51 +08:00
|
|
|
</dependency>
|
2021-01-27 16:45:19 +08:00
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
<!-- Api文档 -->
|
2020-09-04 19:04:06 +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-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-03-12 01:18:30 +08:00
|
|
|
<!-- openfeign依赖 1. http客户端选择okhttp 2. loadbalancer替换ribbon -->
|
2020-10-06 12:20:15 +08:00
|
|
|
<dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
2020-10-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-okhttp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-01 00:30:35 +08:00
|
|
|
</dependencies>
|
2020-09-30 15:05:51 +08:00
|
|
|
</project>
|