2019-02-23 00:41:24 +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>order</artifactId>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>order-application</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<org.mapstruct.version>1.3.0.Final</org.mapstruct.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-05-05 19:26:57 +08:00
|
|
|
|
|
|
|
<!-- api module -->
|
2019-02-23 00:41:24 +08:00
|
|
|
<dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>order-service-impl</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-03 17:20:18 +08:00
|
|
|
<artifactId>system-sdk</artifactId>
|
2019-03-17 17:05:01 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-04-10 20:48:35 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>user-sdk</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>common-framework</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
|
2019-05-05 19:26:57 +08:00
|
|
|
<!-- tools category -->
|
2019-02-23 00:41:24 +08:00
|
|
|
<dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId> <!-- use mapstruct-jdk8 for Java 8 or higher -->
|
|
|
|
<version>${org.mapstruct.version}</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
<version>2.12.0</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-05-05 19:26:57 +08:00
|
|
|
<!-- spring cloud and dubbo -->
|
2019-02-23 00:41:24 +08:00
|
|
|
<dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<groupId>org.apache.dubbo</groupId>
|
2019-02-23 00:41:24 +08:00
|
|
|
<artifactId>dubbo</artifactId>
|
|
|
|
</dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2019-02-23 00:41:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.boot</groupId>
|
|
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
|
|
|
<version>0.2.1.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-05-05 19:26:57 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>2.1.3</version>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-05-05 19:26:57 +08:00
|
|
|
<!-- swagger2 -->
|
2019-02-23 00:41:24 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<version>2.9.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
<version>2.9.2</version>
|
|
|
|
</dependency>
|
2019-03-17 17:05:01 +08:00
|
|
|
|
2019-05-05 19:26:57 +08:00
|
|
|
<!-- test -->
|
2019-03-17 17:05:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2019-05-05 19:26:57 +08:00
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2019-03-17 17:05:01 +08:00
|
|
|
</dependency>
|
2019-02-23 00:41:24 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- 提供给 mapstruct 使用 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-03-17 17:05:01 +08:00
|
|
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-02-23 00:41:24 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-04-15 23:33:56 +08:00
|
|
|
</project>
|