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-01-27 20:17:15 +08:00
|
|
|
<version>1.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-01-27 20:17:15 +08:00
|
|
|
<youlai.version>1.0.0</youlai.version>
|
2020-10-31 23:47:11 +08:00
|
|
|
</properties>
|
2020-09-01 00:30:35 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2020-09-30 15:05:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2021-01-27 16:45:19 +08:00
|
|
|
|
2020-09-01 00:30:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-okhttp</artifactId>
|
2020-09-04 19:04:06 +08:00
|
|
|
</dependency>
|
2020-09-30 15:05:51 +08:00
|
|
|
|
2020-09-04 19:04:06 +08:00
|
|
|
<dependency>
|
2020-10-06 12:20:15 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
2020-11-05 01:13:51 +08:00
|
|
|
<artifactId>common-web</artifactId>
|
2020-10-31 23:47:11 +08:00
|
|
|
<version>${youlai.version}</version>
|
2020-10-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2020-11-18 17:14:47 +08:00
|
|
|
<artifactId>common-mybatis</artifactId>
|
2020-10-31 23:47:11 +08:00
|
|
|
<version>${youlai.version}</version>
|
2020-10-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-02-25 20:08:21 +08:00
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-micro-spring-boot-starter</artifactId>
|
2020-09-01 00:30:35 +08:00
|
|
|
</dependency>
|
2021-02-25 20:08:21 +08:00
|
|
|
|
2020-09-01 00:30:35 +08:00
|
|
|
</dependencies>
|
2020-09-30 15:05:51 +08:00
|
|
|
</project>
|