pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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.elasticsearch</groupId>
  27. <artifactId>elasticsearch</artifactId>
  28. <version>5.6.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.elasticsearch.client</groupId>
  32. <artifactId>elasticsearch-rest-client</artifactId>
  33. <version>5.6.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.elasticsearch.client</groupId>
  37. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  38. <version>5.6.0</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.elasticsearch.client</groupId>
  42. <artifactId>elasticsearch-rest-client</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-aop</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.aliyun.openservices</groupId>
  52. <artifactId>ons-client</artifactId>
  53. <version>1.8.4.Final</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.aliyun.odps</groupId>
  61. <artifactId>odps-sdk-core</artifactId>
  62. <version>${sdk.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.junit.vintage</groupId>
  84. <artifactId>junit-vintage-engine</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-jdbc</artifactId>
  91. </dependency>
  92. <!-- Spring Boot Mybatis 依赖 -->
  93. <dependency>
  94. <groupId>org.mybatis.spring.boot</groupId>
  95. <artifactId>mybatis-spring-boot-starter</artifactId>
  96. <version>${mybatis.starter.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.alibaba</groupId>
  100. <artifactId>druid</artifactId>
  101. <version>${druid.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.aliyun.phoenix</groupId>
  105. <artifactId>ali-phoenix-queryserver-client</artifactId>
  106. <version>${phoenix.client.version}</version>
  107. <exclusions>
  108. <exclusion>
  109. <artifactId>gson</artifactId>
  110. <groupId>com.google.code.gson</groupId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.code.gson</groupId>
  116. <artifactId>gson</artifactId>
  117. <version>2.8.5</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.aliyun.hbase</groupId>
  121. <artifactId>alihbase-client</artifactId>
  122. <version>2.0.8</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.pagehelper</groupId>
  126. <artifactId>pagehelper</artifactId>
  127. <version>5.1.11</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.github.pagehelper</groupId>
  131. <artifactId>pagehelper-spring-boot-starter</artifactId>
  132. <version>1.2.13</version>
  133. </dependency>
  134. <dependency>
  135. <artifactId>protobuf-java</artifactId>
  136. <groupId>com.google.protobuf</groupId>
  137. <version>3.3.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.alibaba</groupId>
  141. <artifactId>dns-cache-manipulator</artifactId>
  142. <version>1.5.1</version>
  143. </dependency>
  144. <!-- swagger -->
  145. <dependency>
  146. <groupId>io.springfox</groupId>
  147. <artifactId>springfox-swagger2</artifactId>
  148. <version>2.9.2</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>io.springfox</groupId>
  152. <artifactId>springfox-swagger-ui</artifactId>
  153. <version>2.9.2</version>
  154. </dependency>
  155. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  156. <dependency>
  157. <groupId>com.google.guava</groupId>
  158. <artifactId>guava</artifactId>
  159. <version>29.0-jre</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.elasticsearch.client</groupId>
  163. <artifactId>rest</artifactId>
  164. <version>5.5.3</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.logging.log4j</groupId>
  168. <artifactId>log4j-core</artifactId>
  169. <version>2.7</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.logging.log4j</groupId>
  173. <artifactId>log4j-api</artifactId>
  174. <version>2.7</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework.kafka</groupId>
  178. <artifactId>spring-kafka</artifactId>
  179. </dependency>
  180. </dependencies>
  181. <build>
  182. <plugins>
  183. <plugin>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-maven-plugin</artifactId>
  186. </plugin>
  187. </plugins>
  188. </build>
  189. </project>