pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>cn.hutool</groupId>
  61. <artifactId>hutool-all</artifactId>
  62. <version>5.8.27</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. </dependencies>
  70. <dependencyManagement>
  71. <dependencies>
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-dependencies</artifactId>
  75. <version>${spring-cloud.version}</version>
  76. <type>pom</type>
  77. <scope>import</scope>
  78. </dependency>
  79. </dependencies>
  80. </dependencyManagement>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>