pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.datau</groupId>
  6. <artifactId>da</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>da</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.1.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-actuator</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-redis</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  39. </dependency>
  40. <!-- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId>
  41. </dependency> -->
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-openfeign</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. <version>1.3.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>druid</artifactId>
  64. <version>1.1.9</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>1.2.12</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.auth0</groupId>
  73. <artifactId>java-jwt</artifactId>
  74. <version>3.1.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.jsonwebtoken</groupId>
  78. <artifactId>jjwt</artifactId>
  79. <version>0.6.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.pagehelper</groupId>
  83. <artifactId>pagehelper-spring-boot-starter</artifactId>
  84. <version>1.2.5</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.springfox</groupId>
  88. <artifactId>springfox-swagger2</artifactId>
  89. <version>2.7.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-swagger-ui</artifactId>
  94. <version>2.7.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.commons</groupId>
  98. <artifactId>commons-pool2</artifactId>
  99. <version>2.4.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>commons-net</groupId>
  103. <artifactId>commons-net</artifactId>
  104. <version>3.6</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi</artifactId>
  109. <version>3.9</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.poi</groupId>
  113. <artifactId>poi-ooxml-schemas</artifactId>
  114. <version>3.9</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi-ooxml</artifactId>
  119. <version>3.9</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.poi</groupId>
  123. <artifactId>poi-scratchpad</artifactId>
  124. <version>3.9</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. <version>2.6</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.jcraft</groupId>
  133. <artifactId>jsch</artifactId>
  134. <version>0.1.54</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.bouncycastle</groupId>
  138. <artifactId>bcprov-jdk16</artifactId>
  139. <version>1.46</version>
  140. </dependency>
  141. <!-- <dependency> -->
  142. <!-- <groupId>org.apache.hive</groupId> -->
  143. <!-- <artifactId>hive-jdbc</artifactId> -->
  144. <!-- <version>1.2.0</version> -->
  145. <!-- </dependency> -->
  146. <!-- <dependency> -->
  147. <!-- <groupId>org.apache.hadoop</groupId> -->
  148. <!-- <artifactId>hadoop-client</artifactId> -->
  149. <!-- <version>2.7.3</version> -->
  150. <!-- </dependency> -->
  151. <dependency>
  152. <groupId>jdk.tools</groupId>
  153. <artifactId>jdk.tools</artifactId>
  154. <version>1.8</version>
  155. <scope>system</scope>
  156. <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.hadoop</groupId>
  160. <artifactId>hadoop-hdfs</artifactId>
  161. <version>2.6.4</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.hadoop</groupId>
  165. <artifactId>hadoop-common</artifactId>
  166. <version>2.6.4</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.hive</groupId>
  170. <artifactId>hive-exec</artifactId>
  171. <version>1.1.0</version>
  172. <exclusions>
  173. <exclusion>
  174. <artifactId>
  175. pentaho-aggdesigner-algorithm
  176. </artifactId>
  177. <groupId>org.pentaho</groupId>
  178. </exclusion>
  179. </exclusions>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.hive</groupId>
  183. <artifactId>hive-jdbc</artifactId>
  184. <version>1.1.0</version>
  185. </dependency>
  186. <!-- <dependency> <groupId>org.eclipse.jetty.aggregate</groupId> <artifactId>jetty-all</artifactId>
  187. <version>9.2.19.v20160908</version> </dependency> -->
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-configuration-processor</artifactId>
  191. <optional>true</optional>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.quartz-scheduler</groupId>
  195. <artifactId>quartz</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.quartz-scheduler</groupId>
  199. <artifactId>quartz-jobs</artifactId>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.lmax</groupId>
  203. <artifactId>disruptor</artifactId>
  204. <version>3.3.0</version>
  205. </dependency>
  206. </dependencies>
  207. <dependencyManagement>
  208. <dependencies>
  209. <dependency>
  210. <groupId>org.springframework.cloud</groupId>
  211. <artifactId>spring-cloud-dependencies</artifactId>
  212. <version>${spring-cloud.version}</version>
  213. <type>pom</type>
  214. <scope>import</scope>
  215. </dependency>
  216. </dependencies>
  217. </dependencyManagement>
  218. <build>
  219. <plugins>
  220. <plugin>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-maven-plugin</artifactId>
  223. </plugin>
  224. <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId>
  225. <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration>
  226. </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
  227. <executions> <execution> <id>make-a-jar</id> <phase>compile</phase> <goals>
  228. <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml>
  229. </configuration> </plugin> -->
  230. <plugin>
  231. <groupId>org.apache.maven.plugins</groupId>
  232. <artifactId>maven-surefire-plugin</artifactId>
  233. <configuration>
  234. <testFailureIgnore>true</testFailureIgnore>
  235. </configuration>
  236. </plugin>
  237. </plugins>
  238. </build>
  239. <repositories>
  240. <repository>
  241. <id>spring-milestones</id>
  242. <name>Spring Milestones</name>
  243. <url>https://repo.spring.io/milestone</url>
  244. <snapshots>
  245. <enabled>false</enabled>
  246. </snapshots>
  247. </repository>
  248. </repositories>
  249. </project>