2020-07-03 23:40:14 +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>system-service-project</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-08-01 23:19:47 +08:00
|
|
|
<artifactId>system-service-app</artifactId>
|
2020-07-03 23:40:14 +08:00
|
|
|
<dependencies>
|
|
|
|
<!-- RPC 相关 -->
|
|
|
|
<dependency>
|
2020-07-19 01:34:44 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-dubbo</artifactId>
|
2020-07-03 23:40:14 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<!-- 系统服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>system-service-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-19 22:13:17 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-system-error-code</artifactId> <!-- 错误码 -->
|
|
|
|
</dependency>
|
|
|
|
|
2020-08-01 23:19:47 +08:00
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId> <!-- 需要开启 Web 容器,因为 Actuator 需要使用到 -->
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-03 23:40:14 +08:00
|
|
|
<!-- Registry 和 Config 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- DB 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-mybatis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-05 19:49:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-spring-boot-starter-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-08-01 23:19:47 +08:00
|
|
|
<!-- 监控相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-03 23:40:14 +08:00
|
|
|
<!-- 工具类相关 -->
|
2020-07-17 08:19:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-03 23:40:14 +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-08-02 00:57:39 +08:00
|
|
|
<build>
|
|
|
|
<!-- 设置构建的 jar 包名 -->
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
2020-08-02 01:09:20 +08:00
|
|
|
<!-- 使用 spring-boot-maven-plugin 插件打包 -->
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2020-08-02 00:57:39 +08:00
|
|
|
</build>
|
|
|
|
|
2020-07-03 23:40:14 +08:00
|
|
|
</project>
|