.flattened-pom.xml 888 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.cdm</groupId>
  7. <artifactId>cdm</artifactId>
  8. <version>2.0.0-jdk8-snapshot</version>
  9. </parent>
  10. <groupId>com.cdm</groupId>
  11. <artifactId>cdm-module-system</artifactId>
  12. <version>2.0.0-jdk8-snapshot</version>
  13. <packaging>pom</packaging>
  14. <name>${project.artifactId}</name>
  15. <description>system 模块下,我们放通用业务,支撑上层的核心业务。
  16. 例如说:用户、部门、权限、数据字典等等</description>
  17. <modules>
  18. <module>cdm-module-system-api</module>
  19. <module>cdm-module-system-biz</module>
  20. </modules>
  21. </project>