mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-23 05:00:25 +08:00
167 lines
5.5 KiB
XML
167 lines
5.5 KiB
XML
<?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>mall-pms</artifactId>
|
|
<groupId>com.youlai</groupId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>pms-boot</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<!-- web环境 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 读取配置 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 单元测试 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 分布式事务Seata 指定Seata客户端版本和服务器一致 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-seata</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-all</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-spring-boot-starter</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-all</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 商品feign接口 -->
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>pms-api</artifactId>
|
|
<version>${youlai.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-log</artifactId>
|
|
<version>${youlai.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-rabbitmq</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>ums-api</artifactId>
|
|
<version>2.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>1.2.2</version>
|
|
|
|
<!--将插件绑定在某个phase执行-->
|
|
<executions>
|
|
<execution>
|
|
<id>build-image</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<imageName>${project.artifactId}</imageName>
|
|
<!--指定标签-->
|
|
<imageTags>
|
|
<imageTag>latest</imageTag>
|
|
</imageTags>
|
|
<!-- 指定 Dockerfile 路径-->
|
|
<dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
|
|
<forceTags>true</forceTags>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>/</targetPath>
|
|
<directory>${project.build.directory}</directory>
|
|
<include>${project.build.finalName}.jar</include>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|