pom.xml 901 B

12345678910111213141516171819202122232425
  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>org.jeesharp</groupId>
  6. <artifactId>jeesharp</artifactId>
  7. <version>2.0.1.RELEASE</version>
  8. </parent>
  9. <groupId>org.jeesharp.module</groupId>
  10. <artifactId>jeesharp-module</artifactId>
  11. <version>2.0.1.RELEASE</version>
  12. <packaging>pom</packaging>
  13. <name>jeesharp-module</name>
  14. <!-- FIXME change it to the project's website -->
  15. <url>http://www.example.com</url>
  16. <modules>
  17. <!-- module 系统相关的服务 -->
  18. <module>jeesharp-member</module>
  19. <module>api-gateway</module>
  20. <module>jeesharp-front</module>
  21. </modules>
  22. </project>