pom.xml 1014 B

1234567891011121314151617181920212223242526
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.newfeifan.zx</groupId>
  6. <artifactId>feifan</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <groupId>cn.newfeifan.sale</groupId>
  10. <artifactId>feifan-module-sale</artifactId>
  11. <packaging>pom</packaging>
  12. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  13. <modules>
  14. <module>feifan-module-sale-api</module>
  15. <module>feifan-module-sale-biz</module>
  16. </modules>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <description> <!-- 4. 新增 description 为该模块的描述 -->
  21. demo 模块,主要实现 XXX、YYY、ZZZ 等功能。
  22. </description>
  23. </project>