pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <!-- 监控父项目 -->
  7. <parent>
  8. <artifactId>phoenix</artifactId>
  9. <groupId>com.gitee.pifeng</groupId>
  10. <version>1.2.4.RELEASE-CR7</version>
  11. <relativePath>..</relativePath>
  12. </parent>
  13. <!-- 项目基本信息 -->
  14. <artifactId>phoenix-common</artifactId>
  15. <name>phoenix-common</name>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <!-- 监控公共模块 -->
  19. <module>phoenix-common-core</module>
  20. <!-- 监控WEB公共模块 -->
  21. <module>phoenix-common-web</module>
  22. </modules>
  23. <description>监控公共模块父工程</description>
  24. <!-- 依赖管理 -->
  25. <dependencyManagement>
  26. <dependencies>
  27. <!-- 监控公共模块 -->
  28. <dependency>
  29. <groupId>com.gitee.pifeng</groupId>
  30. <artifactId>phoenix-common-core</artifactId>
  31. <version>${revision}</version>
  32. </dependency>
  33. <!-- 监控WEB公共模块 -->
  34. <dependency>
  35. <groupId>com.gitee.pifeng</groupId>
  36. <artifactId>phoenix-common-web</artifactId>
  37. <version>${revision}</version>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. </project>