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>
|
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
<dependencies>
|
2020-09-01 20:00:08 +08:00
|
|
|
<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-09-01 20:00:08 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2020-11-05 01:13:51 +08:00
|
|
|
<artifactId>common-redis</artifactId>
|
2020-10-31 23:47:11 +08:00
|
|
|
<version>${youlai.version}</version>
|
2020-09-01 20:00:08 +08:00
|
|
|
</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-12-03 23:55:36 +08:00
|
|
|
<properties>
|
|
|
|
<youlai.version>1.0.0-SNAPSHOT</youlai.version>
|
|
|
|
<dockerfile-maven-version>1.4.13</dockerfile-maven-version>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
|
|
<version>${dockerfile-maven-version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default</id>
|
|
|
|
<goals>
|
|
|
|
<goal>build</goal>
|
|
|
|
<goal>push</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<repository>${project.artifactId}</repository>
|
|
|
|
<tag>${project.version}</tag>
|
|
|
|
<buildArgs>
|
|
|
|
<JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
|
|
|
|
</buildArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-08-23 14:26:47 +08:00
|
|
|
</project>
|