2020-06-24 18:20:09 +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">
|
2020-09-01 20:00:08 +08:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
<parent>
|
2020-09-01 20:00:08 +08:00
|
|
|
<artifactId>youlai-mall</artifactId>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2020-06-24 18:20:09 +08:00
|
|
|
</parent>
|
2020-09-01 20:00:08 +08:00
|
|
|
|
2020-06-28 23:40:56 +08:00
|
|
|
<artifactId>youlai-gateway</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
2020-09-01 20:00:08 +08:00
|
|
|
<youlai-common.version>1.0.0-SNAPSHOT</youlai-common.version>
|
2020-06-28 23:40:56 +08:00
|
|
|
</properties>
|
2020-06-24 18:20:09 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2020-09-01 20:00:08 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>youlai-common-core</artifactId>
|
|
|
|
<version>${youlai-common.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>youlai-common-redis</artifactId>
|
|
|
|
<version>${youlai-common.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
2020-08-23 14:26:47 +08:00
|
|
|
<artifactId>spring-cloud-starter-gateway</artifactId>
|
2020-06-24 18:20:09 +08:00
|
|
|
</dependency>
|
2020-09-01 20:00:08 +08:00
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
<dependency>
|
2020-09-01 20:00:08 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
2020-06-24 18:20:09 +08:00
|
|
|
</dependency>
|
2020-08-23 14:26:47 +08:00
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
<dependency>
|
2020-09-01 20:00:08 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-resource-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
|
|
|
</dependency>
|
2020-06-24 18:20:09 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2020-08-23 14:26:47 +08:00
|
|
|
</project>
|