pom.xml 833 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.zqt.ccj</groupId>
  7. <artifactId>patrol</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <modules>
  12. <module>patrol-module-member-api</module>
  13. <module>patrol-module-member-biz</module>
  14. </modules>
  15. <artifactId>patrol-module-member</artifactId>
  16. <packaging>pom</packaging>
  17. <name>${project.artifactId}</name>
  18. <description>
  19. member 模块,我们放会员业务。
  20. 例如说:会员中心等等
  21. </description>
  22. </project>