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>
|
2021-01-27 20:17:15 +08:00
|
|
|
|
<version>1.0.0</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>
|
2021-01-26 20:17:51 +08:00
|
|
|
|
<packaging>jar</packaging>
|
2020-06-28 23:40:56 +08:00
|
|
|
|
|
2020-12-05 12:17:09 +08:00
|
|
|
|
<properties>
|
2021-01-27 20:17:15 +08:00
|
|
|
|
<youlai.version>1.0.0</youlai.version>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
2020-06-24 18:20:09 +08:00
|
|
|
|
<dependencies>
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!--Spring Cloud & Alibaba-->
|
2020-09-01 20:00:08 +08:00
|
|
|
|
<dependency>
|
2021-01-26 20:17:51 +08:00
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
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
|
|
|
|
|
2021-04-01 18:08:29 +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
|
|
|
|
|
2021-04-02 22:49:15 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-01 18:08:29 +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>
|
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- OAuth2资源服务器-->
|
2020-09-01 20:00:08 +08:00
|
|
|
|
<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>
|
2021-01-26 20:17:51 +08:00
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- 流量控制、熔断降级 -->
|
2021-01-26 20:17:51 +08:00
|
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-alibaba-sentinel-gateway</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
2021-01-26 20:17:51 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- Api文档 -->
|
2021-01-26 20:17:51 +08:00
|
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
2021-01-26 20:17:51 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- 配置读取 -->
|
2021-01-27 15:45:03 +08:00
|
|
|
|
<dependency>
|
2021-03-12 01:18:30 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2021-01-27 15:45:03 +08:00
|
|
|
|
</dependency>
|
2021-02-25 20:08:21 +08:00
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- 公共依赖 -->
|
2021-02-25 20:08:21 +08:00
|
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
|
<artifactId>common-redis</artifactId>
|
2021-02-25 20:08:21 +08:00
|
|
|
|
</dependency>
|
2020-06-24 18:20:09 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2020-12-03 23:55:36 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2021-02-19 20:16:05 +08:00
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
|
<!-- docker-maven-plugin 构建镜像上传至云服务器 参考文章: https://www.cnblogs.com/haoxianrui/p/14088400.html-->
|
2020-12-03 23:55:36 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.spotify</groupId>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
2020-12-03 23:55:36 +08:00
|
|
|
|
<executions>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
<!--执行mvn package,即执行 mvn clean package docker:build-->
|
2021-03-12 01:18:30 +08:00
|
|
|
|
<!--<execution>
|
2021-02-13 21:40:07 +08:00
|
|
|
|
<id>build-image</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>build</goal>
|
|
|
|
|
</goals>
|
2021-03-12 01:18:30 +08:00
|
|
|
|
</execution>-->
|
2020-12-03 23:55:36 +08:00
|
|
|
|
</executions>
|
2020-12-04 23:53:01 +08:00
|
|
|
|
|
|
|
|
|
<configuration>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
<!-- 镜像名称 -->
|
|
|
|
|
<imageName>${project.artifactId}</imageName>
|
|
|
|
|
<!-- 指定标签 -->
|
|
|
|
|
<imageTags>
|
|
|
|
|
<imageTag>latest</imageTag>
|
|
|
|
|
</imageTags>
|
|
|
|
|
<!-- 基础镜像-->
|
|
|
|
|
<baseImage>openjdk:8-jdk-alpine</baseImage>
|
|
|
|
|
|
|
|
|
|
<!-- 切换到容器工作目录-->
|
|
|
|
|
<workdir>/</workdir>
|
|
|
|
|
|
|
|
|
|
<entryPoint>["java","-jar","${project.build.finalName}.jar"]</entryPoint>
|
|
|
|
|
|
|
|
|
|
<!-- 指定远程 Docker API地址 -->
|
2020-12-06 23:54:52 +08:00
|
|
|
|
<dockerHost>https://a.youlai.store:2376</dockerHost>
|
|
|
|
|
<!-- 指定tls证书的目录 -->
|
2021-03-10 20:14:44 +08:00
|
|
|
|
<dockerCertPath>C:\certs\docker\a.youlai.store</dockerCertPath>
|
2020-12-05 12:17:09 +08:00
|
|
|
|
|
|
|
|
|
<!-- 复制 jar包到docker容器指定目录-->
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>/</targetPath>
|
|
|
|
|
<!-- 用于指定需要复制的根目录,${project.build.directory}表示target目录 -->
|
|
|
|
|
<directory>${project.build.directory}</directory>
|
|
|
|
|
<!-- 用于指定需要复制的文件,${project.build.finalName}.jar就是打包后的target目录下的jar包名称 -->
|
|
|
|
|
<include>${project.build.finalName}.jar</include>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2020-12-04 23:53:01 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2020-12-03 23:55:36 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2020-08-23 14:26:47 +08:00
|
|
|
|
</project>
|