2019-02-25 10:20:30 +00: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 13:21:44 +00:00
|
|
|
<artifactId>onemall</artifactId>
|
2019-02-25 10:20:30 +00: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 12:10:09 +00:00
|
|
|
<module>mall-spring-boot</module>
|
2020-04-20 00:29:09 +00:00
|
|
|
<module>mall-spring-boot-starter-swagger</module>
|
2020-04-20 11:55:39 +00:00
|
|
|
<module>mall-spring-boot-starter-web</module>
|
2020-07-04 15:25:22 +00:00
|
|
|
<module>mall-security-annotations</module>
|
2020-07-04 16:10:55 +00:00
|
|
|
<module>mall-spring-boot-starter-security-admin</module>
|
2020-07-04 15:25:22 +00:00
|
|
|
<module>mall-spring-boot-starter-security-user</module>
|
2020-08-06 06:14:19 +00:00
|
|
|
<module>mall-spring-boot-starter-sentry</module>
|
2020-04-27 14:40:12 +00:00
|
|
|
<module>mall-spring-boot-starter-mybatis</module>
|
2020-07-17 11:59:43 +00:00
|
|
|
<module>mall-spring-boot-starter-dubbo</module>
|
2020-07-19 14:13:17 +00:00
|
|
|
<module>mall-spring-boot-starter-system-error-code</module>
|
2020-07-30 14:38:14 +00:00
|
|
|
<module>mall-spring-boot-starter-rocketmq</module>
|
2020-11-30 10:47:57 +00:00
|
|
|
<module>mall-spring-boot-starter-xxl-job</module>
|
2020-12-05 11:49:59 +00:00
|
|
|
<module>mall-spring-boot-starter-redis</module>
|
2019-02-25 10:20:30 +00:00
|
|
|
</modules>
|
|
|
|
|
2020-04-20 00:29:09 +00: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 10:20:30 +00:00
|
|
|
|
2019-04-06 12:10:13 +00:00
|
|
|
</project>
|