pom.xml 5.9 KB

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