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>
|
2019-02-28 19:28:02 +08:00
|
|
|
<packaging>jar</packaging>
|
2019-02-27 00:00:37 +08:00
|
|
|
|
2019-05-03 17:20:18 +08:00
|
|
|
<artifactId>system-sdk</artifactId>
|
2019-02-27 01:19:38 +08:00
|
|
|
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependencies>
|
2019-05-05 19:47:16 +08:00
|
|
|
<!-- api -->
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>common-framework</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>system-service-api</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependency>
|
2019-04-06 21:58:56 +08:00
|
|
|
|
2019-05-05 19:47:16 +08:00
|
|
|
<!-- other -->
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
2019-04-06 21:37:27 +08:00
|
|
|
<scope>provided</scope>
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
2019-04-06 21:58:56 +08:00
|
|
|
|
2019-05-05 19:47:16 +08:00
|
|
|
<!-- spring cloud、dubbo -->
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
<artifactId>dubbo</artifactId>
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependency>
|
2019-05-07 19:33:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.dubbo</groupId>
|
|
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2019-02-27 00:00:37 +08:00
|
|
|
<dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>5.1.5.RELEASE</version>
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependency>
|
2019-05-05 19:47:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>5.1.5.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-02-27 00:00:37 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2019-04-06 21:37:27 +08:00
|
|
|
</project>
|