pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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. <packaging>pom</packaging>
  6. <modules>
  7. <module>member-common</module>
  8. <module>member-services</module>
  9. <module>member-web</module>
  10. <module>member-weixin-service</module>
  11. <module>member-services-models</module>
  12. <module>member-web-common</module>
  13. </modules>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>2.2.0.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20. <groupId>com.liangjian</groupId>
  21. <artifactId>dataplatform</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. <name>dataplatform</name>
  24. <description>亮键数据平台接口应用</description>
  25. <properties>
  26. <java.version>1.8</java.version>
  27. <maven.compiler.source>11</maven.compiler.source>
  28. <maven.compiler.target>11</maven.compiler.target>
  29. </properties>
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.liangjian</groupId>
  34. <artifactId>member-common</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.liangjian</groupId>
  39. <artifactId>member-services</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.liangjian</groupId>
  44. <artifactId>member-web</artifactId>
  45. <version>0.0.1-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.liangjian</groupId>
  49. <artifactId>member-weixin-service</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.liangjian</groupId>
  54. <artifactId>member-services-models</artifactId>
  55. <version>0.0.1-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.liangjian</groupId>
  59. <artifactId>member-web-common</artifactId>
  60. <version>0.0.1-SNAPSHOT</version>
  61. </dependency>
  62. <!--<dependency>-->
  63. <!--<groupId>org.elasticsearch.client</groupId>-->
  64. <!--<artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  65. <!--<version>7.0.1</version>-->
  66. <!--</dependency>-->
  67. <!--<dependency>-->
  68. <!--<groupId>org.elasticsearch</groupId>-->
  69. <!--<artifactId>elasticsearch</artifactId>-->
  70. <!--<version>7.0.1</version>-->
  71. <!--</dependency>-->
  72. <!--<dependency>-->
  73. <!--<groupId>org.elasticsearch.client</groupId>-->
  74. <!--<artifactId>elasticsearch-rest-client</artifactId>-->
  75. <!--<version>7.0.1</version>-->
  76. <!--</dependency>-->
  77. <!--<dependency>-->
  78. <!--<groupId>org.elasticsearch.client</groupId>-->
  79. <!--<artifactId>transport</artifactId>-->
  80. <!--<version>7.0.1</version>-->
  81. <!--</dependency>-->
  82. </dependencies>
  83. </dependencyManagement>
  84. <dependencies>
  85. <!--<dependency>-->
  86. <!--<groupId>org.elasticsearch.client</groupId>-->
  87. <!--<artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  88. <!--<version>7.0.1</version>-->
  89. <!--</dependency>-->
  90. <!--<dependency>-->
  91. <!--<groupId>org.elasticsearch.client</groupId>-->
  92. <!--<artifactId>transport</artifactId>-->
  93. <!--<version>7.0.1</version>-->
  94. <!--</dependency>-->
  95. <!-- jpa -->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-data-jpa</artifactId>
  99. <version>2.1.7.RELEASE</version>
  100. </dependency>
  101. <!-- 试验性,jpa与mybatis-plus共用 mybatis-plus -->
  102. <!--<dependency>-->
  103. <!--<groupId>com.baomidou</groupId>-->
  104. <!--<artifactId>mybatis-plus-boot-starter</artifactId>-->
  105. <!--<version>3.3.0</version>-->
  106. <!--</dependency>-->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-data-redis</artifactId>
  110. <version>2.1.7.RELEASE</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-web</artifactId>
  115. <version>2.1.7.RELEASE</version>
  116. </dependency>
  117. <!-- hibernate -->
  118. <!-- spring-data-es -->
  119. <dependency>
  120. <groupId>org.springframework.data</groupId>
  121. <artifactId>spring-data-elasticsearch</artifactId>
  122. <!--<version>3.2.0.RELEASE</version>-->
  123. </dependency>
  124. <dependency>
  125. <groupId>javassist</groupId>
  126. <artifactId>javassist</artifactId>
  127. <version>3.12.1.GA</version>
  128. <scope>provided</scope>
  129. </dependency>
  130. <!-- mysql -->
  131. <dependency>
  132. <groupId>mysql</groupId>
  133. <artifactId>mysql-connector-java</artifactId>
  134. <scope>runtime</scope>
  135. </dependency>
  136. <!-- sqlserver -->
  137. <!--<dependency>-->
  138. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  139. <!--<artifactId>sqljdbc4</artifactId>-->
  140. <!--<version>4.0</version>-->
  141. <!--</dependency>-->
  142. <dependency>
  143. <groupId>com.microsoft.sqlserver</groupId>
  144. <artifactId>mssql-jdbc</artifactId>
  145. <version>7.4.1.jre11</version>
  146. </dependency>
  147. <!-- postgresql -->
  148. <dependency>
  149. <groupId>org.postgresql</groupId>
  150. <artifactId>postgresql</artifactId>
  151. <version>42.2.6</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-test</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. <!-- 阿里巴巴的连接池 -->
  159. <dependency>
  160. <groupId>com.alibaba</groupId>
  161. <artifactId>druid-spring-boot-starter</artifactId>
  162. <version>1.1.17</version>
  163. </dependency>
  164. <!-- swagger api管理 -->
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger2</artifactId>
  168. <version>2.6.1</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>io.springfox</groupId>
  172. <artifactId>springfox-swagger-ui</artifactId>
  173. <version>2.6.1</version>
  174. </dependency>
  175. <!-- Gson -->
  176. <dependency>
  177. <groupId>com.google.code.gson</groupId>
  178. <artifactId>gson</artifactId>
  179. <version>2.8.5</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.hadoop</groupId>
  183. <artifactId>hadoop-common</artifactId>
  184. <version>3.2.1</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.hadoop</groupId>
  188. <artifactId>hadoop-yarn-common</artifactId>
  189. <version>3.2.1</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.hbase</groupId>
  193. <artifactId>hbase-common</artifactId>
  194. <version>2.2.2</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.apache.hbase</groupId>
  198. <artifactId>hbase-client</artifactId>
  199. <version>2.2.2</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.hbase</groupId>
  203. <artifactId>hbase-prefix-tree</artifactId>
  204. <version>1.5.0</version>
  205. <scope>runtime</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.hbase</groupId>
  209. <artifactId>hbase-server</artifactId>
  210. <version>2.2.2</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.hive</groupId>
  214. <artifactId>hive-service</artifactId>
  215. <version>1.1.0</version>
  216. <!--<exclusions>-->
  217. <!--<exclusion>-->
  218. <!--<groupId>org.eclipse.jetty.aggregate</groupId>-->
  219. <!--<artifactId>jetty-all</artifactId>-->
  220. <!--</exclusion>-->
  221. <!--<exclusion>-->
  222. <!--<groupId>org.apache.hive</groupId>-->
  223. <!--<artifactId>hive-shims</artifactId>-->
  224. <!--</exclusion>-->
  225. <!--</exclusions>-->
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.hive</groupId>
  229. <artifactId>hive-common</artifactId>
  230. <version>1.1.0</version>
  231. <!--<exclusions>-->
  232. <!--<exclusion>-->
  233. <!--<groupId>org.eclipse.jetty.aggregate</groupId>-->
  234. <!--<artifactId>jetty-all</artifactId>-->
  235. <!--</exclusion>-->
  236. <!--<exclusion>-->
  237. <!--<groupId>org.apache.hive</groupId>-->
  238. <!--<artifactId>hive-shims</artifactId>-->
  239. <!--</exclusion>-->
  240. <!--</exclusions>-->
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.hive</groupId>
  244. <artifactId>hive-jdbc</artifactId>
  245. <version>1.1.0</version>
  246. <!--<exclusions>-->
  247. <!--<exclusion>-->
  248. <!--<groupId>org.eclipse.jetty.aggregate</groupId>-->
  249. <!--<artifactId>jetty-all</artifactId>-->
  250. <!--</exclusion>-->
  251. <!--<exclusion>-->
  252. <!--<groupId>org.apache.hive</groupId>-->
  253. <!--<artifactId>hive-shims</artifactId>-->
  254. <!--</exclusion>-->
  255. <!--</exclusions>-->
  256. </dependency>
  257. <dependency>
  258. <groupId>net.sf.json-lib</groupId>
  259. <artifactId>json-lib</artifactId>
  260. <version>2.4</version>
  261. <classifier>jdk15</classifier>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.sqoop</groupId>
  265. <artifactId>sqoop</artifactId>
  266. <version>1.4.7</version>
  267. <classifier>hadoop260</classifier>
  268. </dependency>
  269. <!-- clickhouse -->
  270. <dependency>
  271. <groupId>ru.yandex.clickhouse</groupId>
  272. <artifactId>clickhouse-jdbc</artifactId>
  273. <version>0.1.40</version>
  274. <scope>runtime</scope>
  275. </dependency>
  276. <!--<dependency>-->
  277. <!--<groupId>com.cloudera</groupId>-->
  278. <!--<artifactId>ImpalaJDBC41</artifactId>-->
  279. <!--<version>2.5.42</version>-->
  280. <!--</dependency>-->
  281. <!-- SpringBoot 热部署 -->
  282. <!--<dependency>-->
  283. <!--<groupId>org.springframework.boot</groupId>-->
  284. <!--<artifactId>spring-boot-devtools</artifactId>-->
  285. <!--&lt;!&ndash; 不传递依赖 &ndash;&gt;-->
  286. <!--<optional>true</optional>-->
  287. <!--</dependency>-->
  288. <dependency>
  289. <groupId>org.projectlombok</groupId>
  290. <artifactId>lombok</artifactId>
  291. <optional>true</optional>
  292. </dependency>
  293. </dependencies>
  294. <repositories>
  295. <repository>
  296. <id>spring-libs-snapshot</id>
  297. <name>Spring Snapshot Repository</name>
  298. <url>https://repo.spring.io/libs-snapshot</url>
  299. </repository>
  300. </repositories>
  301. <build>
  302. <plugins>
  303. <plugin>
  304. <groupId>org.apache.maven.plugins</groupId>
  305. <artifactId>maven-compiler-plugin</artifactId>
  306. <version>3.8.1</version>
  307. <configuration>
  308. <release>11</release>
  309. </configuration>
  310. <dependencies>
  311. <dependency>
  312. <groupId>org.ow2.asm</groupId>
  313. <artifactId>asm</artifactId>
  314. <version>6.2</version> <!-- Use newer version of ASM -->
  315. </dependency>
  316. </dependencies>
  317. </plugin>
  318. </plugins>
  319. </build>
  320. </project>