| 12345678910111213141516171819202122232425 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.storlead.boot</groupId>
- <artifactId>storlead-smarttrade-platform</artifactId>
- <version>1.0</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <artifactId>storlead-crm</artifactId>
- <packaging>pom</packaging>
- <name>storlead-crm</name>
- <description>客户经营域聚合模块;具体业务在下方子模块中实现。</description>
- <modules>
- <module>storlead-customer</module>
- <module>storlead-order</module>
- <module>storlead-email</module>
- <module>storlead-marketing</module>
- <module>storlead-acquisition</module>
- </modules>
- </project>
|