pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-client</artifactId>
  15. <name>phoenix-client</name>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <!-- 监控客户端 -->
  19. <module>phoenix-client-core</module>
  20. <!-- 监控客户端与springboot集成的starter -->
  21. <module>phoenix-client-spring-boot-starter</module>
  22. <!-- 监控客户端与springmvc集成的integrator -->
  23. <module>phoenix-client-spring-mvc-integrator</module>
  24. </modules>
  25. <description>监控客户端父工程</description>
  26. <!-- 依赖管理 -->
  27. <dependencyManagement>
  28. <dependencies>
  29. <!-- 监控客户端依赖 -->
  30. <dependency>
  31. <groupId>com.gitee.pifeng</groupId>
  32. <artifactId>phoenix-client-core</artifactId>
  33. <version>${revision}</version>
  34. </dependency>
  35. <!-- 监控项目客户端与springboot集成的starter -->
  36. <!-- <dependency>-->
  37. <!-- <groupId>com.gitee.pifeng</groupId>-->
  38. <!-- <artifactId>phoenix-client-spring-boot-starter</artifactId>-->
  39. <!-- <version>${revision}</version>-->
  40. <!-- </dependency>-->
  41. <!-- 监控项目客户端与springmvc集成的integrator -->
  42. <dependency>
  43. <groupId>com.gitee.pifeng</groupId>
  44. <artifactId>phoenix-client-spring-mvc-integrator</artifactId>
  45. <version>${revision}</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>