youlai-mall/mall-pms/pom.xml

33 lines
984 B
XML
Raw Normal View History

2020-10-05 23:54:51 +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>youlai-mall</artifactId>
<groupId>com.youlai</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2020-10-09 20:09:30 +08:00
<artifactId>mall-pms</artifactId>
2020-10-05 23:54:51 +08:00
<packaging>pom</packaging>
<modules>
2020-10-08 23:42:55 +08:00
<module>mall-pms-api</module>
<module>mall-pms-biz</module>
2020-10-05 23:54:51 +08:00
</modules>
<properties>
<youlai-common.version>1.0.0-SNAPSHOT</youlai-common.version>
</properties>
<dependencies>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-common-core</artifactId>
<version>${youlai-common.version}</version>
</dependency>
</dependencies>
</project>