2021-02-25 20:08:21 +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>
|
|
|
|
<artifactId>youlai-admin</artifactId>
|
|
|
|
<groupId>com.youlai</groupId>
|
2021-06-19 12:36:51 +08:00
|
|
|
<version>2.0.0</version>
|
2021-02-25 20:08:21 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>admin-boot</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
2021-06-19 14:27:12 +08:00
|
|
|
<youlai.version>2.0.0</youlai.version>
|
2021-02-25 20:08:21 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
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>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
<!-- 单元测试 -->
|
2021-03-05 20:24:20 +08:00
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2021-03-05 20:24:20 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
<!-- Spring Cloud & Alibaba -->
|
2021-03-05 20:24:20 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-02 22:49:15 +08:00
|
|
|
<!-- 注册中心 -->
|
2021-02-25 20:08:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
2021-08-25 08:24:04 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-04-02 22:49:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 配置中心 -->
|
2021-02-25 20:08:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-12 01:01:25 +08:00
|
|
|
<!-- Sentinel流量控制、熔断降级 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Sentinel规则持久化至Nacos配置 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.csp</groupId>
|
|
|
|
<artifactId>sentinel-datasource-nacos</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
<!-- JWT库 -->
|
2021-02-25 20:08:21 +08:00
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-04-01 18:08:29 +08:00
|
|
|
<!-- 分布式对象存储 -->
|
2021-02-25 20:08:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
<artifactId>minio</artifactId>
|
2021-08-25 08:24:04 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>admin-api</artifactId>
|
|
|
|
<version>${youlai.version}</version>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-redis</artifactId>
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependency>
|
2021-03-09 16:38:55 +08:00
|
|
|
<dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
2021-05-21 00:44:02 +08:00
|
|
|
<artifactId>common-es</artifactId>
|
2021-03-09 16:38:55 +08:00
|
|
|
</dependency>
|
2021-04-01 18:08:29 +08:00
|
|
|
|
2021-06-01 08:22:02 +08:00
|
|
|
|
2021-06-07 01:49:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-mybatis</artifactId>
|
|
|
|
<version>${youlai.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-25 20:08:21 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2021-08-13 17:53:59 +08:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2021-05-19 20:46:55 +08:00
|
|
|
|
2021-02-25 20:08:21 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
2021-05-19 20:46:55 +08:00
|
|
|
<version>1.2.2</version>
|
|
|
|
|
2021-05-30 23:42:25 +08:00
|
|
|
<!--将插件绑定在某个阶段执行-->
|
2021-02-25 20:08:21 +08:00
|
|
|
<executions>
|
2021-05-19 20:46:55 +08:00
|
|
|
<execution>
|
2021-02-25 20:08:21 +08:00
|
|
|
<id>build-image</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
2021-06-07 01:49:41 +08:00
|
|
|
<goal>build</goal>
|
2021-02-25 20:08:21 +08:00
|
|
|
</goals>
|
2021-05-19 20:46:55 +08:00
|
|
|
</execution>
|
2021-02-25 20:08:21 +08:00
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<imageName>${project.artifactId}</imageName>
|
2021-05-19 20:46:55 +08:00
|
|
|
<!--指定标签-->
|
2021-02-25 20:08:21 +08:00
|
|
|
<imageTags>
|
|
|
|
<imageTag>latest</imageTag>
|
|
|
|
</imageTags>
|
2021-05-19 20:46:55 +08:00
|
|
|
<!-- 指定 Dockerfile 路径-->
|
|
|
|
<dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
|
|
|
|
<forceTags>true</forceTags>
|
2021-02-25 20:08:21 +08:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>/</targetPath>
|
|
|
|
<directory>${project.build.directory}</directory>
|
|
|
|
<include>${project.build.finalName}.jar</include>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|