pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>collector</artifactId>
  7. <groupId>com.usthe.tancloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>server</artifactId>
  12. <dependencies>
  13. <!-- spring -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-webflux</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-configuration-processor</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <!-- isolation -->
  24. <dependency>
  25. <groupId>com.alipay.sofa</groupId>
  26. <artifactId>sofa-ark-springboot-starter</artifactId>
  27. <version>1.1.6</version>
  28. </dependency>
  29. <!-- common -->
  30. <dependency>
  31. <groupId>com.usthe.tancloud</groupId>
  32. <artifactId>common</artifactId>
  33. <version>1.0-SNAPSHOT</version>
  34. </dependency>
  35. <!-- etcd -->
  36. <dependency>
  37. <groupId>io.etcd</groupId>
  38. <artifactId>jetcd-core</artifactId>
  39. <version>0.5.11</version>
  40. </dependency>
  41. <!-- kafka -->
  42. <dependency>
  43. <groupId>org.apache.kafka</groupId>
  44. <artifactId>kafka-clients</artifactId>
  45. <version>3.0.0</version>
  46. </dependency>
  47. <!-- http -->
  48. <dependency>
  49. <groupId>org.apache.httpcomponents</groupId>
  50. <artifactId>httpclient</artifactId>
  51. <version>4.5.13</version>
  52. </dependency>
  53. <!--json path parser-->
  54. <dependency>
  55. <groupId>com.jayway.jsonpath</groupId>
  56. <artifactId>json-path</artifactId>
  57. <version>2.6.0</version>
  58. </dependency>
  59. <!-- lru hashmap -->
  60. <dependency>
  61. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  62. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  63. <version>1.4.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.google.guava</groupId>
  67. <artifactId>guava</artifactId>
  68. <version>31.0.1-jre</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.code.gson</groupId>
  72. <artifactId>gson</artifactId>
  73. <version>2.8.8</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.googlecode.aviator</groupId>
  77. <artifactId>aviator</artifactId>
  78. <version>5.2.7</version>
  79. </dependency>
  80. <!-- plugins -->
  81. <dependency>
  82. <groupId>com.usthe.tancloud</groupId>
  83. <artifactId>sample-plugin</artifactId>
  84. <version>1.0-SNAPSHOT</version>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <plugins>
  89. <plugin>
  90. <groupId>com.alipay.sofa</groupId>
  91. <artifactId>sofa-ark-maven-plugin</artifactId>
  92. <version>1.1.6</version>
  93. <executions>
  94. <execution>
  95. <id>default-cli</id>
  96. <!--goal executed to generate executable-ark-jar -->
  97. <goals>
  98. <goal>repackage</goal>
  99. </goals>
  100. <configuration>
  101. <!--specify destination where executable-ark-jar will be saved, default saved to ${project.build.directory}-->
  102. <outputDirectory>./target</outputDirectory>
  103. <!--default none-->
  104. <arkClassifier>executable</arkClassifier>
  105. </configuration>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>