2019-02-27 00:00:37 +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>
|
2019-05-03 17:20:18 +08:00
|
|
|
<artifactId>system</artifactId>
|
2019-02-27 00:00:37 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>admin-application</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-03 17:20:18 +08:00
|
|
|
<artifactId>system-service-impl</artifactId>
|
2019-02-27 00:00:37 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-04-06 21:58:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
2019-05-03 17:20:18 +08:00
|
|
|
<artifactId>system-sdk</artifactId>
|
2019-04-06 21:58:56 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>common-framework</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<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>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2019-03-08 01:43:32 +08:00
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>de.codecentric</groupId>-->
|
|
|
|
<!--<artifactId>spring-boot-admin-starter-server</artifactId>-->
|
|
|
|
<!--<version>2.1.3</version>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>de.codecentric</groupId>-->
|
|
|
|
<!--<artifactId>spring-boot-admin-server-ui</artifactId>-->
|
|
|
|
<!--<version>2.1.3</version>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>2.1.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-05-01 23:08:01 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- 提供给 mapstruct 使用 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
2019-02-28 19:28:02 +08:00
|
|
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
|
2019-02-27 00:00:37 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
2019-04-06 21:58:56 +08:00
|
|
|
</project>
|