pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>monitor</artifactId>
  7. <groupId>com.usthe.tancloud</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>collector</artifactId>
  12. <dependencies>
  13. <!-- spring -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-configuration-processor</artifactId>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-autoconfigure</artifactId>
  27. </dependency>
  28. <!-- common -->
  29. <dependency>
  30. <groupId>com.usthe.tancloud</groupId>
  31. <artifactId>common</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <!-- etcd -->
  35. <dependency>
  36. <groupId>io.etcd</groupId>
  37. <artifactId>jetcd-core</artifactId>
  38. <version>0.5.11</version>
  39. </dependency>
  40. <!-- kafka -->
  41. <dependency>
  42. <groupId>org.apache.kafka</groupId>
  43. <artifactId>kafka-clients</artifactId>
  44. <version>3.0.0</version>
  45. </dependency>
  46. <!-- http -->
  47. <dependency>
  48. <groupId>org.apache.httpcomponents</groupId>
  49. <artifactId>httpclient</artifactId>
  50. <version>4.5.13</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-io</groupId>
  54. <artifactId>commons-io</artifactId>
  55. <version>2.0.1</version>
  56. </dependency>
  57. <!--network-->
  58. <dependency>
  59. <groupId>commons-net</groupId>
  60. <artifactId>commons-net</artifactId>
  61. <version>3.8.0</version>
  62. </dependency>
  63. <!--json path parser-->
  64. <dependency>
  65. <groupId>com.jayway.jsonpath</groupId>
  66. <artifactId>json-path</artifactId>
  67. <version>2.6.0</version>
  68. </dependency>
  69. <!-- lru hashmap -->
  70. <dependency>
  71. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  72. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  73. <version>1.4.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.guava</groupId>
  77. <artifactId>guava</artifactId>
  78. <version>31.0.1-jre</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.code.gson</groupId>
  82. <artifactId>gson</artifactId>
  83. <version>2.8.8</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.googlecode.aviator</groupId>
  87. <artifactId>aviator</artifactId>
  88. <version>5.2.7</version>
  89. </dependency>
  90. <!--collect-->
  91. <!-- mysql -->
  92. <dependency>
  93. <groupId>mysql</groupId>
  94. <artifactId>mysql-connector-java</artifactId>
  95. <version>8.0.27</version>
  96. </dependency>
  97. </dependencies>
  98. </project>