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>
|
2019-05-06 21:21:44 +08:00
|
|
|
<artifactId>onemall</artifactId>
|
2019-02-25 18:20:30 +08:00
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>common-framework</module>
|
2019-05-09 20:10:09 +08:00
|
|
|
<module>mall-spring-boot</module>
|
2020-04-10 20:56:50 +08:00
|
|
|
<module>common-dependencies</module>
|
2020-04-20 08:29:09 +08:00
|
|
|
<module>mall-spring-boot-starter-swagger</module>
|
2019-02-25 18:20:30 +08:00
|
|
|
</modules>
|
|
|
|
|
2020-04-20 08:29:09 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.mall</groupId>
|
|
|
|
<artifactId>mall-dependencies</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-02-25 18:20:30 +08:00
|
|
|
|
2019-04-06 20:10:13 +08:00
|
|
|
</project>
|