1234567891011121314151617181920212223 |
- <?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>
- <groupId>com.nationrel.boot</groupId>
- <artifactId>nationrel-boot-parent</artifactId>
- <version>3.6.2</version>
- <relativePath>../nationrel-boot-parent</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>nationrel-module-rp</artifactId>
- <packaging>pom</packaging>
- <!--项目子模块-->
- <modules>
- <module>nationrel-module-rp-api</module>
- <module>nationrel-module-rp-biz</module>
- <module>nationrel-module-rp-start</module>
- </modules>
- </project>
|