mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 20:54:26 +08:00
114 lines
3.3 KiB
XML
114 lines
3.3 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>3.2.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>pms-boot</artifactId>
|
|
|
|
<properties>
|
|
<service.port>8802</service.port>
|
|
<service.nodeport>32001</service.nodeport>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 读取配置 -->
|
|
<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>
|
|
|
|
<!-- 商品feign客户端 -->
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>pms-api</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 会员feign客户端 -->
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>ums-api</artifactId>
|
|
</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-rabbitmq</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-security</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-seata</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.youlai</groupId>
|
|
<artifactId>common-apidoc</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
</project>
|