pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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>rpm</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>rpm</name>
  10. <description>rpm</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>runtime</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.poi</groupId>
  98. <artifactId>poi</artifactId>
  99. <version>3.9</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.poi</groupId>
  103. <artifactId>poi-ooxml-schemas</artifactId>
  104. <version>3.9</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-ooxml</artifactId>
  109. <version>3.9</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.poi</groupId>
  113. <artifactId>poi-scratchpad</artifactId>
  114. <version>3.9</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>2.6</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.jcraft</groupId>
  123. <artifactId>jsch</artifactId>
  124. <version>0.1.54</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.bouncycastle</groupId>
  128. <artifactId>bcprov-jdk16</artifactId>
  129. <version>1.46</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.projectlombok</groupId>
  133. <artifactId>lombok</artifactId>
  134. <version>1.18.4</version>
  135. </dependency>
  136. <!-- <dependency> -->
  137. <!-- <groupId>org.apache.hive</groupId> -->
  138. <!-- <artifactId>hive-jdbc</artifactId> -->
  139. <!-- <version>1.2.0</version> -->
  140. <!-- </dependency> -->
  141. <!-- <dependency> -->
  142. <!-- <groupId>org.apache.hadoop</groupId> -->
  143. <!-- <artifactId>hadoop-client</artifactId> -->
  144. <!-- <version>2.7.3</version> -->
  145. <!-- </dependency> -->
  146. <dependency>
  147. <groupId>jdk.tools</groupId>
  148. <artifactId>jdk.tools</artifactId>
  149. <version>1.8</version>
  150. <scope>system</scope>
  151. <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.hadoop</groupId>
  155. <artifactId>hadoop-hdfs</artifactId>
  156. <version>2.6.4</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.hadoop</groupId>
  160. <artifactId>hadoop-common</artifactId>
  161. <version>2.6.4</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.hive</groupId>
  165. <artifactId>hive-exec</artifactId>
  166. <version>1.1.0</version>
  167. <exclusions>
  168. <exclusion>
  169. <artifactId>
  170. pentaho-aggdesigner-algorithm
  171. </artifactId>
  172. <groupId>org.pentaho</groupId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.hive</groupId>
  178. <artifactId>hive-jdbc</artifactId>
  179. <version>1.1.0</version>
  180. </dependency>
  181. <!-- <dependency> <groupId>org.eclipse.jetty.aggregate</groupId> <artifactId>jetty-all</artifactId>
  182. <version>9.2.19.v20160908</version> </dependency> -->
  183. <dependency>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-configuration-processor</artifactId>
  186. <optional>true</optional>
  187. </dependency>
  188. </dependencies>
  189. <dependencyManagement>
  190. <dependencies>
  191. <dependency>
  192. <groupId>org.springframework.cloud</groupId>
  193. <artifactId>spring-cloud-dependencies</artifactId>
  194. <version>${spring-cloud.version}</version>
  195. <type>pom</type>
  196. <scope>import</scope>
  197. </dependency>
  198. </dependencies>
  199. </dependencyManagement>
  200. <build>
  201. <plugins>
  202. <plugin>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-maven-plugin</artifactId>
  205. </plugin>
  206. <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId>
  207. <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration>
  208. </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
  209. <executions> <execution> <id>make-a-jar</id> <phase>compile</phase> <goals>
  210. <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml>
  211. </configuration> </plugin> -->
  212. <plugin>
  213. <groupId>org.apache.maven.plugins</groupId>
  214. <artifactId>maven-surefire-plugin</artifactId>
  215. <configuration>
  216. <testFailureIgnore>true</testFailureIgnore>
  217. </configuration>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. <repositories>
  222. <repository>
  223. <id>spring-milestones</id>
  224. <name>Spring Milestones</name>
  225. <url>https://repo.spring.io/milestone</url>
  226. <snapshots>
  227. <enabled>false</enabled>
  228. </snapshots>
  229. </repository>
  230. </repositories>
  231. </project>