pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. <artifactId>dmp-package</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>adm</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>adm-business</module>
  16. <module>adm-common</module>
  17. </modules>
  18. <!-- 版本管理 -->
  19. <properties>
  20. <adm.version>1.0.0</adm.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.persagy</groupId>
  26. <artifactId>adm-common</artifactId>
  27. <version>${adm.version}</version>
  28. </dependency>
  29. </dependencies>
  30. </dependencyManagement>
  31. </project>