pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-SNAPSHOT</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. <!--network-->
  53. <dependency>
  54. <groupId>commons-net</groupId>
  55. <artifactId>commons-net</artifactId>
  56. <version>3.8.0</version>
  57. </dependency>
  58. <!--json path parser-->
  59. <dependency>
  60. <groupId>com.jayway.jsonpath</groupId>
  61. <artifactId>json-path</artifactId>
  62. <version>2.6.0</version>
  63. </dependency>
  64. <!-- lru hashmap -->
  65. <dependency>
  66. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  67. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  68. <version>1.4.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.guava</groupId>
  72. <artifactId>guava</artifactId>
  73. <version>31.0.1-jre</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.code.gson</groupId>
  77. <artifactId>gson</artifactId>
  78. <version>2.8.8</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.googlecode.aviator</groupId>
  82. <artifactId>aviator</artifactId>
  83. <version>5.2.7</version>
  84. </dependency>
  85. </dependencies>
  86. </project>