2020-07-04 16:20:33 +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>onemall</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>shop-web-app</artifactId>
|
|
|
|
<description>商城,用于用户购物</description>
|
|
|
|
|
2020-08-03 20:38:12 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- onemall 基础 bom 文件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-dependencies</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-swagger</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-security-user</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- RPC 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-dubbo</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<!-- 用户服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- 商品服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>product-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2020-08-04 08:12:08 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- 搜索服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>search-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2020-08-07 19:12:00 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- 订单服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>order-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2020-08-14 19:09:17 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- 营销服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>promotion-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2020-08-03 20:38:12 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- 系统服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>system-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Registry 和 Config 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-08-27 01:09:59 +08:00
|
|
|
<!-- 监控相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-08-03 20:38:12 +08:00
|
|
|
<!-- 工具类相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId> <!-- use mapstruct-jdk8 for Java 8 or higher -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct-jdk8</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2020-07-04 16:20:33 +08:00
|
|
|
</project>
|