pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.sf</groupId>
  12. <artifactId>eureka-client-supplier-demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>eureka-client-supplier-demo</name>
  15. <description>eureka-client-supplier-demo</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <spring-cloud.version>2023.0.1</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <version>1.18.32</version>
  33. </dependency>
  34. <!--micrometer-tracing指标追踪 1-->
  35. <dependency>
  36. <groupId>io.micrometer</groupId>
  37. <artifactId>micrometer-tracing</artifactId>
  38. </dependency>
  39. <!--micrometer-tracing-bridge-brave适配zipkin的桥接包 2-->
  40. <dependency>
  41. <groupId>io.micrometer</groupId>
  42. <artifactId>micrometer-tracing-bridge-brave</artifactId>
  43. </dependency>
  44. <!--micrometer-observation 3-->
  45. <dependency>
  46. <groupId>io.micrometer</groupId>
  47. <artifactId>micrometer-observation</artifactId>
  48. </dependency>
  49. <!--feign-micrometer 4-->
  50. <dependency>
  51. <groupId>io.github.openfeign</groupId>
  52. <artifactId>feign-micrometer</artifactId>
  53. </dependency>
  54. <!--zipkin-reporter-brave 5-->
  55. <dependency>
  56. <groupId>io.zipkin.reporter2</groupId>
  57. <artifactId>zipkin-reporter-brave</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-actuator</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>cn.hutool</groupId>
  65. <artifactId>hutool-all</artifactId>
  66. <version>5.8.27</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. </dependencies>
  74. <dependencyManagement>
  75. <dependencies>
  76. <dependency>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-dependencies</artifactId>
  79. <version>${spring-cloud.version}</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. </dependencies>
  84. </dependencyManagement>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>