pom.xml 9.1 KB

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