pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.0.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.winhc</groupId>
  13. <artifactId>winhc_task</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <phoenix.client.version>5.2.1-HBase-2.x</phoenix.client.version>
  18. <spring.boot.version>2.0.3.RELEASE</spring.boot.version>
  19. <mybatis.starter.version>1.2.0</mybatis.starter.version>
  20. <druid.version>1.1.5</druid.version>
  21. <sdk.version>0.33.7-public</sdk.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.elasticsearch</groupId>
  26. <artifactId>elasticsearch</artifactId>
  27. <version>5.6.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.elasticsearch.client</groupId>
  31. <artifactId>elasticsearch-rest-client</artifactId>
  32. <version>5.6.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.elasticsearch.client</groupId>
  36. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  37. <version>5.6.0</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.elasticsearch.client</groupId>
  41. <artifactId>elasticsearch-rest-client</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-aop</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.aliyun.openservices</groupId>
  51. <artifactId>ons-client</artifactId>
  52. <version>1.8.4.Final</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.aliyun.odps</groupId>
  60. <artifactId>odps-sdk-core</artifactId>
  61. <version>${sdk.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-web</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <optional>true</optional>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.junit.vintage</groupId>
  83. <artifactId>junit-vintage-engine</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-jdbc</artifactId>
  90. </dependency>
  91. <!-- Spring Boot Mybatis 依赖 -->
  92. <dependency>
  93. <groupId>org.mybatis.spring.boot</groupId>
  94. <artifactId>mybatis-spring-boot-starter</artifactId>
  95. <version>${mybatis.starter.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid</artifactId>
  100. <version>${druid.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.aliyun.phoenix</groupId>
  104. <artifactId>ali-phoenix-queryserver-client</artifactId>
  105. <version>${phoenix.client.version}</version>
  106. <exclusions>
  107. <exclusion>
  108. <artifactId>gson</artifactId>
  109. <groupId>com.google.code.gson</groupId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.code.gson</groupId>
  115. <artifactId>gson</artifactId>
  116. <version>2.8.5</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.aliyun.hbase</groupId>
  120. <artifactId>alihbase-client</artifactId>
  121. <version>2.0.8</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.github.pagehelper</groupId>
  125. <artifactId>pagehelper</artifactId>
  126. <version>5.1.11</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.github.pagehelper</groupId>
  130. <artifactId>pagehelper-spring-boot-starter</artifactId>
  131. <version>1.2.13</version>
  132. </dependency>
  133. <dependency>
  134. <artifactId>protobuf-java</artifactId>
  135. <groupId>com.google.protobuf</groupId>
  136. <version>3.3.0</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.alibaba</groupId>
  140. <artifactId>dns-cache-manipulator</artifactId>
  141. <version>1.5.1</version>
  142. </dependency>
  143. <!-- swagger -->
  144. <dependency>
  145. <groupId>io.springfox</groupId>
  146. <artifactId>springfox-swagger2</artifactId>
  147. <version>2.9.2</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>io.springfox</groupId>
  151. <artifactId>springfox-swagger-ui</artifactId>
  152. <version>2.9.2</version>
  153. </dependency>
  154. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  155. <dependency>
  156. <groupId>com.google.guava</groupId>
  157. <artifactId>guava</artifactId>
  158. <version>29.0-jre</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.elasticsearch.client</groupId>
  162. <artifactId>rest</artifactId>
  163. <version>5.5.3</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.logging.log4j</groupId>
  167. <artifactId>log4j-core</artifactId>
  168. <version>2.7</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.logging.log4j</groupId>
  172. <artifactId>log4j-api</artifactId>
  173. <version>2.7</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.springframework.kafka</groupId>
  177. <artifactId>spring-kafka</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>cn.hutool</groupId>
  181. <artifactId>hutool-crypto</artifactId>
  182. <version>5.5.8</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-freemarker</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.projectlombok</groupId>
  190. <artifactId>lombok</artifactId>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.alibaba.hologres</groupId>
  194. <artifactId>holo-client</artifactId>
  195. <version>1.2.16.5</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.aliyun</groupId>
  199. <artifactId>aliyun-java-sdk-dataworks-public</artifactId>
  200. <version>1.8.3</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>com.aliyun</groupId>
  204. <artifactId>aliyun-java-sdk-core</artifactId>
  205. <version>4.0.3</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.squareup.okhttp3</groupId>
  209. <artifactId>okhttp</artifactId>
  210. <version>3.10.0</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>cn.hutool</groupId>
  214. <artifactId>hutool-all</artifactId>
  215. <version>5.3.7</version>
  216. </dependency>
  217. </dependencies>
  218. <build>
  219. <plugins>
  220. <plugin>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-maven-plugin</artifactId>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. </project>