.flattened-pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.cdm</groupId>
  7. <artifactId>cdm-framework</artifactId>
  8. <version>2.0.0-jdk8-snapshot</version>
  9. </parent>
  10. <groupId>com.cdm</groupId>
  11. <artifactId>cdm-spring-boot-starter-monitor</artifactId>
  12. <version>2.0.0-jdk8-snapshot</version>
  13. <name>${project.artifactId}</name>
  14. <description>服务监控,提供链路追踪、日志服务、指标收集等等功能</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.cdm</groupId>
  19. <artifactId>cdm-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-aop</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-web</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>jakarta.servlet</groupId>
  32. <artifactId>jakarta.servlet-api</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.opentracing</groupId>
  37. <artifactId>opentracing-util</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.skywalking</groupId>
  41. <artifactId>apm-toolkit-trace</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.skywalking</groupId>
  45. <artifactId>apm-toolkit-logback-1.x</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.skywalking</groupId>
  49. <artifactId>apm-toolkit-opentracing</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.micrometer</groupId>
  53. <artifactId>micrometer-registry-prometheus</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>de.codecentric</groupId>
  57. <artifactId>spring-boot-admin-starter-client</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>