pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.persagy</groupId>
  8. <artifactId>apm-parent</artifactId>
  9. <version>3.0.0</version>
  10. <relativePath>apm-parent</relativePath>
  11. </parent>
  12. <artifactId>apm-basics</artifactId>
  13. <packaging>pom</packaging>
  14. <description>apm组件项目,只提供jar,不提供服务</description>
  15. <distributionManagement>
  16. <repository>
  17. <id>persagy</id>
  18. <name>releases Repository</name>
  19. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  20. </repository>
  21. </distributionManagement>
  22. <modules>
  23. <module>apm-parent</module>
  24. <module>apm-server</module>
  25. <module>apm-common</module>
  26. <module>apm-translate</module>
  27. <module>apm-mybatis</module>
  28. <module>apm-package</module>
  29. <module>apm-screw</module>
  30. </modules>
  31. </project>