pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.itlym.platform</groupId>
  7. <artifactId>shoulder-platform-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version><!-- shoulder-platform-version -->
  9. <relativePath>../shoulder-platform-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>shoulder-platform-starter-monitor</artifactId>
  13. <description>应用服务器指标监控:spring-boot-actuator + Prometheus</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-actuator</artifactId>
  18. </dependency>
  19. <!--有了nacos, 就不需要spring-boot-admin-starter-client这个了-->
  20. <!--<dependency>
  21. <groupId>de.codecentric</groupId>
  22. <artifactId>spring-boot-admin-starter-client</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.micrometer</groupId>
  26. <artifactId>micrometer-registry-prometheus</artifactId>
  27. </dependency>-->
  28. </dependencies>
  29. </project>