2020-07-02 19:06:32 +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>user-service-project</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-07-02 23:06:17 +08:00
|
|
|
<artifactId>user-service-app</artifactId>
|
2020-07-02 19:06:32 +08:00
|
|
|
<dependencies>
|
|
|
|
<!-- RPC 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-dubbo</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-02 23:06:17 +08:00
|
|
|
<dependency>
|
|
|
|
<!-- 用户服务 -->
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-service-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-07-02 19:06:32 +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>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</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>
|
|
|
|
|
|
|
|
<!-- 工具类相关 -->
|
|
|
|
<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>
|
2020-07-03 19:12:56 +08:00
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>javax.el</groupId>-->
|
|
|
|
<!-- <artifactId>javax.el-api</artifactId>-->
|
|
|
|
<!-- <version>3.0.0</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>javax.el</groupId>-->
|
|
|
|
<!-- <artifactId>javax.el-api</artifactId>-->
|
|
|
|
<!-- <version>3.0.1-b06</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
2020-07-02 19:06:32 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|