2019-02-25 18:20:30 +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</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>user-application</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<org.mapstruct.version>1.3.0.Final</org.mapstruct.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-service-impl</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-04-06 22:15:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-02-25 18:20:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>common-framework</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-06 22:15:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-sdk</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>admin-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-02-25 18:20:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>dubbo</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.boot</groupId>
|
|
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
</dependency>
|
2019-02-26 12:10:14 +08:00
|
|
|
|
2019-02-26 00:24:12 +08:00
|
|
|
|
2019-02-25 18:20:30 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- 提供给 mapstruct 使用 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-03-10 19:07:00 +08:00
|
|
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-02-25 18:20:30 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-04-06 22:15:30 +08:00
|
|
|
</project>
|