pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>pigx-visual</artifactId>
  7. <groupId>com.pig4cloud</groupId>
  8. <version>2.5.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pigx-zipkin</artifactId>
  12. <description>pigx zipkin追踪服务</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-undertow</artifactId>
  21. </dependency>
  22. <!--配置中心客户端-->
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-config</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-jdbc</artifactId>
  30. </dependency>
  31. <!--zipkin-->
  32. <dependency>
  33. <groupId>io.zipkin.java</groupId>
  34. <artifactId>zipkin-server</artifactId>
  35. <version>${zipkin.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.zipkin.java</groupId>
  39. <artifactId>zipkin-autoconfigure-ui</artifactId>
  40. <version>${zipkin.version}</version>
  41. </dependency>
  42. <!-- 使用mysql存储-->
  43. <dependency>
  44. <groupId>io.zipkin.java</groupId>
  45. <artifactId>zipkin-autoconfigure-storage-mysql</artifactId>
  46. <version>${zipkin.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.zipkin.java</groupId>
  50. <artifactId>zipkin-storage-mysql</artifactId>
  51. <version>${zipkin-storage-mysql.version}</version>
  52. </dependency>
  53. <!-- zipkin2.x 需要此包连接操作mysql -->
  54. <dependency>
  55. <groupId>org.jooq</groupId>
  56. <artifactId>jooq</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. </plugin>
  69. <plugin>
  70. <groupId>com.spotify</groupId>
  71. <artifactId>docker-maven-plugin</artifactId>
  72. <version>${docker.plugin.version}</version>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>