.flattened-pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <groupId>cn.iocoder.boot</groupId>
  6. <artifactId>yudao-spring-boot-starter-monitor</artifactId>
  7. <version>2025.11-SNAPSHOT</version>
  8. <name>yudao-spring-boot-starter-monitor</name>
  9. <description>服务监控,提供链路追踪、日志服务、指标收集等等功能</description>
  10. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  11. <dependencies>
  12. <dependency>
  13. <groupId>cn.iocoder.boot</groupId>
  14. <artifactId>yudao-common</artifactId>
  15. <version>2025.11-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-aop</artifactId>
  21. <version>3.5.8</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-web</artifactId>
  27. <version>6.2.14</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>jakarta.servlet</groupId>
  32. <artifactId>jakarta.servlet-api</artifactId>
  33. <version>6.0.0</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.opentracing</groupId>
  38. <artifactId>opentracing-util</artifactId>
  39. <version>0.33.0</version>
  40. <scope>compile</scope>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.skywalking</groupId>
  45. <artifactId>apm-toolkit-trace</artifactId>
  46. <version>9.5.0</version>
  47. <scope>compile</scope>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.skywalking</groupId>
  52. <artifactId>apm-toolkit-logback-1.x</artifactId>
  53. <version>9.5.0</version>
  54. <scope>compile</scope>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.skywalking</groupId>
  59. <artifactId>apm-toolkit-opentracing</artifactId>
  60. <version>9.5.0</version>
  61. <scope>compile</scope>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.micrometer</groupId>
  66. <artifactId>micrometer-registry-prometheus</artifactId>
  67. <version>1.15.6</version>
  68. <scope>compile</scope>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>de.codecentric</groupId>
  73. <artifactId>spring-boot-admin-starter-client</artifactId>
  74. <version>3.5.6</version>
  75. <scope>compile</scope>
  76. <optional>true</optional>
  77. </dependency>
  78. </dependencies>
  79. <repositories>
  80. <repository>
  81. <id>huaweicloud</id>
  82. <name>huawei</name>
  83. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  84. </repository>
  85. <repository>
  86. <id>aliyunmaven</id>
  87. <name>aliyun</name>
  88. <url>https://maven.aliyun.com/repository/public</url>
  89. </repository>
  90. <repository>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. <id>spring-milestones</id>
  95. <name>Spring Milestones</name>
  96. <url>https://repo.spring.io/milestone</url>
  97. </repository>
  98. <repository>
  99. <releases>
  100. <enabled>false</enabled>
  101. </releases>
  102. <id>spring-snapshots</id>
  103. <name>Spring Snapshots</name>
  104. <url>https://repo.spring.io/snapshot</url>
  105. </repository>
  106. </repositories>
  107. </project>