pom.xml 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler</artifactId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-bom</artifactId>
  27. <packaging>pom</packaging>
  28. <name>${project.artifactId}</name>
  29. <properties>
  30. <netty.version>4.1.53.Final</netty.version>
  31. <spring-boot.version>2.7.3</spring-boot.version>
  32. <spring-ldap.version>2.4.1</spring-ldap.version>
  33. <java-websocket.version>1.5.1</java-websocket.version>
  34. <mybatis-plus.version>3.5.2</mybatis-plus.version>
  35. <quartz.version>2.3.2</quartz.version>
  36. <druid.version>1.2.4</druid.version>
  37. <zookeeper.version>3.8.0</zookeeper.version>
  38. <curator.version>5.3.0</curator.version>
  39. <curator-test.version>2.12.0</curator-test.version>
  40. <jetcd.version>0.5.11</jetcd.version>
  41. <jetcd.test.version>0.7.1</jetcd.test.version>
  42. <io.grpc.version>1.41.0</io.grpc.version>
  43. <commons-codec.version>1.11</commons-codec.version>
  44. <commons-logging.version>1.1.1</commons-logging.version>
  45. <commons-lang3.version>3.12.0</commons-lang3.version>
  46. <commons-httpclient>3.0.1</commons-httpclient>
  47. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  48. <commons-configuration.version>1.10</commons-configuration.version>
  49. <commons-email.version>1.5</commons-email.version>
  50. <commons-collections4.version>4.1</commons-collections4.version>
  51. <httpclient.version>4.5.13</httpclient.version>
  52. <httpcore.version>4.4.15</httpcore.version>
  53. <jackson.version>2.13.4</jackson.version>
  54. <protostuff.version>1.7.2</protostuff.version>
  55. <byte-buddy.version>1.9.16</byte-buddy.version>
  56. <logback.version>1.2.11</logback.version>
  57. <hadoop.version>3.2.4</hadoop.version>
  58. <cron-utils.version>9.1.6</cron-utils.version>
  59. <h2.version>2.1.210</h2.version>
  60. <mysql-connector.version>8.0.16</mysql-connector.version>
  61. <oracle-jdbc.version>21.5.0.0</oracle-jdbc.version>
  62. <slf4j.version>1.7.36</slf4j.version>
  63. <poi.version>4.1.2</poi.version>
  64. <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
  65. <activation.version>1.1</activation.version>
  66. <javax-mail>1.6.2</javax-mail>
  67. <guava.version>31.1-jre</guava.version>
  68. <postgresql.version>42.4.1</postgresql.version>
  69. <hive-jdbc.version>2.3.9</hive-jdbc.version>
  70. <commons-io.version>2.11.0</commons-io.version>
  71. <oshi-core.version>6.1.1</oshi-core.version>
  72. <clickhouse-jdbc.version>0.3.2-patch11</clickhouse-jdbc.version>
  73. <lz4-java.version>1.4.0</lz4-java.version>
  74. <mssql-jdbc.version>6.1.0.jre8</mssql-jdbc.version>
  75. <presto-jdbc.version>0.238.1</presto-jdbc.version>
  76. <servlet-api.version>2.5</servlet-api.version>
  77. <guava-retry.version>2.0.0</guava-retry.version>
  78. <reflections.version>0.10.2</reflections.version>
  79. <py4j.version>0.10.9</py4j.version>
  80. <jsr305.version>3.0.0</jsr305.version>
  81. <commons-compress.version>1.21</commons-compress.version>
  82. <commons-math3.version>3.1.1</commons-math3.version>
  83. <error_prone_annotations.version>2.5.1</error_prone_annotations.version>
  84. <hibernate-validator.version>6.2.2.Final</hibernate-validator.version>
  85. <aws-sdk.version>1.12.300</aws-sdk.version>
  86. <aliyun-sdk-oss.version>3.15.1</aliyun-sdk-oss.version>
  87. <joda-time.version>2.10.13</joda-time.version>
  88. <okhttp.version>3.14.9</okhttp.version>
  89. <json-path.version>2.7.0</json-path.version>
  90. <spring-cloud-dependencies.version>2021.0.3</spring-cloud-dependencies.version>
  91. <gson.version>2.9.1</gson.version>
  92. <dropwizard.metrics-version>4.2.11</dropwizard.metrics-version>
  93. <snappy.version>1.1.8.4</snappy.version>
  94. <spark.version>3.2.2</spark.version>
  95. <janino.version>3.0.16</janino.version>
  96. <snakeyaml.version>1.33</snakeyaml.version>
  97. <htrace.version>4.1.1</htrace.version>
  98. <datasync.version>2.17.282</datasync.version>
  99. <springdoc-openapi-ui.version>1.6.9</springdoc-openapi-ui.version>
  100. <aspectj.version>1.9.7</aspectj.version>
  101. <zt-zip.version>1.15</zt-zip.version>
  102. </properties>
  103. <dependencyManagement>
  104. <dependencies>
  105. <!-- aspectj -->
  106. <dependency>
  107. <groupId>org.aspectj</groupId>
  108. <artifactId>aspectjweaver</artifactId>
  109. <version>${aspectj.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.aspectj</groupId>
  113. <artifactId>aspectjrt</artifactId>
  114. <version>${aspectj.version}</version>
  115. </dependency>
  116. <!-- netty -->
  117. <dependency>
  118. <groupId>io.netty</groupId>
  119. <artifactId>netty-bom</artifactId>
  120. <version>${netty.version}</version>
  121. <type>pom</type>
  122. <scope>import</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>io.netty</groupId>
  126. <artifactId>netty-all</artifactId>
  127. <version>${netty.version}</version>
  128. </dependency>
  129. <!-- spring -->
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-parent</artifactId>
  133. <version>${spring-boot.version}</version>
  134. <type>pom</type>
  135. <scope>import</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework</groupId>
  139. <artifactId>spring-test</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.java-websocket</groupId>
  144. <artifactId>Java-WebSocket</artifactId>
  145. <version>${java-websocket.version}</version>
  146. </dependency>
  147. <!-- mybatis -->
  148. <dependency>
  149. <groupId>com.baomidou</groupId>
  150. <artifactId>mybatis-plus-boot-starter</artifactId>
  151. <version>${mybatis-plus.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.baomidou</groupId>
  155. <artifactId>mybatis-plus</artifactId>
  156. <version>${mybatis-plus.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.baomidou</groupId>
  160. <artifactId>mybatis-plus-annotation</artifactId>
  161. <version>${mybatis-plus.version}</version>
  162. </dependency>
  163. <!-- quartz-->
  164. <dependency>
  165. <groupId>org.quartz-scheduler</groupId>
  166. <artifactId>quartz</artifactId>
  167. <version>${quartz.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.cronutils</groupId>
  171. <artifactId>cron-utils</artifactId>
  172. <version>${cron-utils.version}</version>
  173. <exclusions>
  174. <exclusion>
  175. <groupId>org.javassist</groupId>
  176. <artifactId>javassist</artifactId>
  177. </exclusion>
  178. </exclusions>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.alibaba</groupId>
  182. <artifactId>druid</artifactId>
  183. <version>${druid.version}</version>
  184. </dependency>
  185. <!-- Zookeeper -->
  186. <dependency>
  187. <groupId>org.apache.zookeeper</groupId>
  188. <artifactId>zookeeper</artifactId>
  189. <version>${zookeeper.version}</version>
  190. <exclusions>
  191. <exclusion>
  192. <groupId>org.slf4j</groupId>
  193. <artifactId>slf4j-log4j12</artifactId>
  194. </exclusion>
  195. <exclusion>
  196. <groupId>io.netty</groupId>
  197. <artifactId>netty</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <groupId>com.github.spotbugs</groupId>
  201. <artifactId>spotbugs-annotations</artifactId>
  202. </exclusion>
  203. </exclusions>
  204. </dependency>
  205. <dependency>
  206. <groupId>io.dropwizard.metrics</groupId>
  207. <artifactId>metrics-core</artifactId>
  208. <version>${dropwizard.metrics-version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.xerial.snappy</groupId>
  212. <artifactId>snappy-java</artifactId>
  213. <version>${snappy.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.curator</groupId>
  217. <artifactId>curator-framework</artifactId>
  218. <version>${curator.version}</version>
  219. <exclusions>
  220. <exclusion>
  221. <groupId>org.slf4j</groupId>
  222. <artifactId>slf4j-log4j12</artifactId>
  223. </exclusion>
  224. </exclusions>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.curator</groupId>
  228. <artifactId>curator-client</artifactId>
  229. <version>${curator.version}</version>
  230. <exclusions>
  231. <exclusion>
  232. <groupId>log4j-1.2-api</groupId>
  233. <artifactId>org.apache.logging.log4j</artifactId>
  234. </exclusion>
  235. </exclusions>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.curator</groupId>
  239. <artifactId>curator-recipes</artifactId>
  240. <version>${curator.version}</version>
  241. <exclusions>
  242. <exclusion>
  243. <groupId>org.apache.zookeeper</groupId>
  244. <artifactId>zookeeper</artifactId>
  245. </exclusion>
  246. </exclusions>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.apache.curator</groupId>
  250. <artifactId>curator-test</artifactId>
  251. <version>${curator.version}</version>
  252. </dependency>
  253. <!-- Etcd -->
  254. <dependency>
  255. <groupId>io.etcd</groupId>
  256. <artifactId>jetcd-core</artifactId>
  257. <version>${jetcd.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>io.etcd</groupId>
  261. <artifactId>jetcd-test</artifactId>
  262. <version>${jetcd.test.version}</version>
  263. <scope>test</scope>
  264. </dependency>
  265. <dependency>
  266. <groupId>io.grpc</groupId>
  267. <artifactId>grpc-bom</artifactId>
  268. <version>${io.grpc.version}</version>
  269. <type>pom</type>
  270. <scope>import</scope>
  271. </dependency>
  272. <dependency>
  273. <groupId>commons-codec</groupId>
  274. <artifactId>commons-codec</artifactId>
  275. <version>${commons-codec.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>commons-logging</groupId>
  279. <artifactId>commons-logging</artifactId>
  280. <version>${commons-logging.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>commons-httpclient</groupId>
  284. <artifactId>commons-httpclient</artifactId>
  285. <version>${commons-httpclient}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>commons-beanutils</groupId>
  289. <artifactId>commons-beanutils</artifactId>
  290. <version>${commons-beanutils.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>commons-configuration</groupId>
  294. <artifactId>commons-configuration</artifactId>
  295. <version>${commons-configuration.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.apache.commons</groupId>
  299. <artifactId>commons-lang3</artifactId>
  300. <version>${commons-lang3.version}</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.apache.commons</groupId>
  304. <artifactId>commons-email</artifactId>
  305. <version>${commons-email.version}</version>
  306. </dependency>
  307. <dependency>
  308. <groupId>org.apache.httpcomponents</groupId>
  309. <artifactId>httpclient</artifactId>
  310. <version>${httpclient.version}</version>
  311. </dependency>
  312. <dependency>
  313. <groupId>org.apache.httpcomponents</groupId>
  314. <artifactId>httpcore</artifactId>
  315. <version>${httpcore.version}</version>
  316. </dependency>
  317. <!-- jackson -->
  318. <dependency>
  319. <groupId>com.fasterxml.jackson.core</groupId>
  320. <artifactId>jackson-annotations</artifactId>
  321. <version>${jackson.version}</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.fasterxml.jackson.core</groupId>
  325. <artifactId>jackson-databind</artifactId>
  326. <version>${jackson.version}</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>com.fasterxml.jackson.core</groupId>
  330. <artifactId>jackson-core</artifactId>
  331. <version>${jackson.version}</version>
  332. </dependency>
  333. <!--protostuff-->
  334. <dependency>
  335. <groupId>io.protostuff</groupId>
  336. <artifactId>protostuff-core</artifactId>
  337. <version>${protostuff.version}</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>io.protostuff</groupId>
  341. <artifactId>protostuff-runtime</artifactId>
  342. <version>${protostuff.version}</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>net.bytebuddy</groupId>
  346. <artifactId>byte-buddy</artifactId>
  347. <version>${byte-buddy.version}</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>org.reflections</groupId>
  351. <artifactId>reflections</artifactId>
  352. <version>${reflections.version}</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>mysql</groupId>
  356. <artifactId>mysql-connector-java</artifactId>
  357. <version>${mysql-connector.version}</version>
  358. <scope>test</scope>
  359. </dependency>
  360. <dependency>
  361. <groupId>com.oracle.database.jdbc</groupId>
  362. <artifactId>ojdbc8</artifactId>
  363. <version>${oracle-jdbc.version}</version>
  364. <scope>test</scope>
  365. </dependency>
  366. <dependency>
  367. <groupId>com.h2database</groupId>
  368. <artifactId>h2</artifactId>
  369. <version>${h2.version}</version>
  370. </dependency>
  371. <!-- sl4j -->
  372. <dependency>
  373. <groupId>org.slf4j</groupId>
  374. <artifactId>slf4j-api</artifactId>
  375. <version>${slf4j.version}</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>org.slf4j</groupId>
  379. <artifactId>slf4j-log4j12</artifactId>
  380. <version>${slf4j.version}</version>
  381. </dependency>
  382. <!-- logback -->
  383. <dependency>
  384. <groupId>ch.qos.logback</groupId>
  385. <artifactId>logback-classic</artifactId>
  386. <version>${logback.version}</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>ch.qos.logback</groupId>
  390. <artifactId>logback-core</artifactId>
  391. <version>${logback.version}</version>
  392. </dependency>
  393. <!--excel poi-->
  394. <dependency>
  395. <groupId>org.apache.poi</groupId>
  396. <artifactId>poi</artifactId>
  397. <version>${poi.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.apache.poi</groupId>
  401. <artifactId>poi-ooxml</artifactId>
  402. <version>${poi.version}</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>com.squareup.okhttp3</groupId>
  406. <artifactId>okhttp</artifactId>
  407. <version>${okhttp.version}</version>
  408. </dependency>
  409. <dependency>
  410. <groupId>com.squareup.okhttp3</groupId>
  411. <artifactId>mockwebserver</artifactId>
  412. <version>${okhttp.version}</version>
  413. <scope>test</scope>
  414. </dependency>
  415. <!-- hadoop -->
  416. <dependency>
  417. <groupId>org.apache.hadoop</groupId>
  418. <artifactId>hadoop-common</artifactId>
  419. <version>${hadoop.version}</version>
  420. <exclusions>
  421. <exclusion>
  422. <groupId>org.slf4j</groupId>
  423. <artifactId>slf4j-log4j12</artifactId>
  424. </exclusion>
  425. <exclusion>
  426. <groupId>jersey-json</groupId>
  427. <artifactId>com.sun.jersey</artifactId>
  428. </exclusion>
  429. <exclusion>
  430. <groupId>junit</groupId>
  431. <artifactId>junit</artifactId>
  432. </exclusion>
  433. <exclusion>
  434. <groupId>javax.servlet</groupId>
  435. <artifactId>servlet-api</artifactId>
  436. </exclusion>
  437. <exclusion>
  438. <groupId>org.slf4j</groupId>
  439. <artifactId>slf4j-reload4j</artifactId>
  440. </exclusion>
  441. </exclusions>
  442. </dependency>
  443. <dependency>
  444. <groupId>org.apache.hadoop</groupId>
  445. <artifactId>hadoop-client</artifactId>
  446. <version>${hadoop.version}</version>
  447. </dependency>
  448. <dependency>
  449. <groupId>org.apache.hadoop</groupId>
  450. <artifactId>hadoop-hdfs</artifactId>
  451. <version>${hadoop.version}</version>
  452. </dependency>
  453. <dependency>
  454. <groupId>org.apache.hadoop</groupId>
  455. <artifactId>hadoop-yarn-common</artifactId>
  456. <version>${hadoop.version}</version>
  457. </dependency>
  458. <dependency>
  459. <groupId>org.apache.hadoop</groupId>
  460. <artifactId>hadoop-yarn-client</artifactId>
  461. <version>${hadoop.version}</version>
  462. </dependency>
  463. <dependency>
  464. <groupId>org.apache.htrace</groupId>
  465. <artifactId>htrace-core4</artifactId>
  466. <scope>provided</scope>
  467. <!-- set to provided to exclude from all hadoop-* transitive dependencies -->
  468. </dependency>
  469. <!-- replace htrace-core with hbase-noop-htrace for CVE -->
  470. <dependency>
  471. <groupId>org.apache.hbase.thirdparty</groupId>
  472. <artifactId>hbase-noop-htrace</artifactId>
  473. <version>${htrace.version}</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>org.apache.commons</groupId>
  477. <artifactId>commons-collections4</artifactId>
  478. <version>${commons-collections4.version}</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>com.google.guava</groupId>
  482. <artifactId>guava</artifactId>
  483. <version>${guava.version}</version>
  484. </dependency>
  485. <dependency>
  486. <groupId>org.postgresql</groupId>
  487. <artifactId>postgresql</artifactId>
  488. <version>${postgresql.version}</version>
  489. </dependency>
  490. <dependency>
  491. <groupId>org.apache.hive</groupId>
  492. <artifactId>hive-jdbc</artifactId>
  493. <version>${hive-jdbc.version}</version>
  494. <exclusions>
  495. <exclusion>
  496. <groupId>org.apache.orc</groupId>
  497. <artifactId>orc-core</artifactId>
  498. </exclusion>
  499. </exclusions>
  500. </dependency>
  501. <dependency>
  502. <groupId>commons-io</groupId>
  503. <artifactId>commons-io</artifactId>
  504. <version>${commons-io.version}</version>
  505. </dependency>
  506. <dependency>
  507. <groupId>com.github.oshi</groupId>
  508. <artifactId>oshi-core</artifactId>
  509. <version>${oshi-core.version}</version>
  510. <exclusions>
  511. <exclusion>
  512. <groupId>org.slf4j</groupId>
  513. <artifactId>slf4j-simple</artifactId>
  514. </exclusion>
  515. <exclusion>
  516. <groupId>org.junit.jupiter</groupId>
  517. <artifactId>junit-jupiter-api</artifactId>
  518. </exclusion>
  519. <exclusion>
  520. <groupId>org.hamcrest</groupId>
  521. <artifactId>hamcrest</artifactId>
  522. </exclusion>
  523. </exclusions>
  524. </dependency>
  525. <dependency>
  526. <groupId>com.clickhouse</groupId>
  527. <artifactId>clickhouse-jdbc</artifactId>
  528. <version>${clickhouse-jdbc.version}</version>
  529. </dependency>
  530. <dependency>
  531. <groupId>com.microsoft.sqlserver</groupId>
  532. <artifactId>mssql-jdbc</artifactId>
  533. <version>${mssql-jdbc.version}</version>
  534. </dependency>
  535. <dependency>
  536. <groupId>com.facebook.presto</groupId>
  537. <artifactId>presto-jdbc</artifactId>
  538. <version>${presto-jdbc.version}</version>
  539. </dependency>
  540. <dependency>
  541. <groupId>javax.servlet</groupId>
  542. <artifactId>servlet-api</artifactId>
  543. <version>${servlet-api.version}</version>
  544. </dependency>
  545. <dependency>
  546. <groupId>javax.servlet</groupId>
  547. <artifactId>javax.servlet-api</artifactId>
  548. <version>${javax.servlet-api.version}</version>
  549. </dependency>
  550. <dependency>
  551. <groupId>com.github.rholder</groupId>
  552. <artifactId>guava-retrying</artifactId>
  553. <version>${guava-retry.version}</version>
  554. </dependency>
  555. <dependency>
  556. <groupId>javax.activation</groupId>
  557. <artifactId>activation</artifactId>
  558. <version>${activation.version}</version>
  559. </dependency>
  560. <dependency>
  561. <groupId>com.sun.mail</groupId>
  562. <artifactId>javax.mail</artifactId>
  563. <version>${javax-mail}</version>
  564. </dependency>
  565. <dependency>
  566. <groupId>net.sf.py4j</groupId>
  567. <artifactId>py4j</artifactId>
  568. <version>${py4j.version}</version>
  569. </dependency>
  570. <dependency>
  571. <groupId>com.google.code.findbugs</groupId>
  572. <artifactId>jsr305</artifactId>
  573. <version>${jsr305.version}</version>
  574. </dependency>
  575. <dependency>
  576. <groupId>org.apache.commons</groupId>
  577. <artifactId>commons-compress</artifactId>
  578. <version>${commons-compress.version}</version>
  579. </dependency>
  580. <dependency>
  581. <groupId>org.apache.commons</groupId>
  582. <artifactId>commons-math3</artifactId>
  583. <version>${commons-math3.version}</version>
  584. </dependency>
  585. <dependency>
  586. <groupId>com.google.errorprone</groupId>
  587. <artifactId>error_prone_annotations</artifactId>
  588. <version>${error_prone_annotations.version}</version>
  589. </dependency>
  590. <!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
  591. <dependency>
  592. <groupId>org.hibernate.validator</groupId>
  593. <artifactId>hibernate-validator</artifactId>
  594. <version>${hibernate-validator.version}</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>com.amazonaws</groupId>
  598. <artifactId>aws-java-sdk-emr</artifactId>
  599. <version>${aws-sdk.version}</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>com.amazonaws</groupId>
  603. <artifactId>aws-java-sdk-s3</artifactId>
  604. <version>${aws-sdk.version}</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>com.amazonaws</groupId>
  608. <artifactId>aws-java-sdk-sagemaker</artifactId>
  609. <version>${aws-sdk.version}</version>
  610. </dependency>
  611. <dependency>
  612. <groupId>com.amazonaws</groupId>
  613. <artifactId>aws-java-sdk-dms</artifactId>
  614. <version>${aws-sdk.version}</version>
  615. </dependency>
  616. <dependency>
  617. <groupId>com.aliyun.oss</groupId>
  618. <artifactId>aliyun-sdk-oss</artifactId>
  619. <version>${aliyun-sdk-oss.version}</version>
  620. </dependency>
  621. <dependency>
  622. <groupId>joda-time</groupId>
  623. <artifactId>joda-time</artifactId>
  624. <version>${joda-time.version}</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>com.jayway.jsonpath</groupId>
  628. <artifactId>json-path</artifactId>
  629. <version>${json-path.version}</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>org.springframework.cloud</groupId>
  633. <artifactId>spring-cloud-dependencies</artifactId>
  634. <version>${spring-cloud-dependencies.version}</version>
  635. <type>pom</type>
  636. <scope>import</scope>
  637. </dependency>
  638. <dependency>
  639. <groupId>org.lz4</groupId>
  640. <artifactId>lz4-java</artifactId>
  641. <version>${lz4-java.version}</version>
  642. </dependency>
  643. <dependency>
  644. <groupId>org.springframework.ldap</groupId>
  645. <artifactId>spring-ldap-core</artifactId>
  646. <version>${spring-ldap.version}</version>
  647. </dependency>
  648. <dependency>
  649. <groupId>com.google.code.gson</groupId>
  650. <artifactId>gson</artifactId>
  651. <version>${gson.version}</version>
  652. </dependency>
  653. <dependency>
  654. <groupId>org.slf4j</groupId>
  655. <artifactId>slf4j-reload4j</artifactId>
  656. <scope>provided</scope>
  657. </dependency>
  658. <dependency>
  659. <groupId>org.apache.spark</groupId>
  660. <artifactId>spark-core_2.12</artifactId>
  661. <version>${spark.version}</version>
  662. <exclusions>
  663. <exclusion>
  664. <groupId>com.fasterxml.jackson.module</groupId>
  665. <artifactId>jackson-module-scala_2.11</artifactId>
  666. </exclusion>
  667. </exclusions>
  668. </dependency>
  669. <dependency>
  670. <groupId>org.apache.spark</groupId>
  671. <artifactId>spark-sql_2.12</artifactId>
  672. <version>${spark.version}</version>
  673. <exclusions>
  674. <exclusion>
  675. <groupId>com.fasterxml.jackson.core</groupId>
  676. <artifactId>jackson-core</artifactId>
  677. </exclusion>
  678. </exclusions>
  679. </dependency>
  680. <dependency>
  681. <groupId>org.apache.spark</groupId>
  682. <artifactId>spark-hive_2.12</artifactId>
  683. <version>${spark.version}</version>
  684. <exclusions>
  685. <exclusion>
  686. <groupId>commons-httpclient</groupId>
  687. <artifactId>commons-httpclient</artifactId>
  688. </exclusion>
  689. <exclusion>
  690. <groupId>org.apache.httpcomponents</groupId>
  691. <artifactId>httpclient</artifactId>
  692. </exclusion>
  693. <exclusion>
  694. <groupId>org.codehaus.jackson</groupId>
  695. <artifactId>jackson-core-asl</artifactId>
  696. </exclusion>
  697. <exclusion>
  698. <groupId>org.codehaus.jackson</groupId>
  699. <artifactId>jackson-mapper-asl</artifactId>
  700. </exclusion>
  701. </exclusions>
  702. </dependency>
  703. <dependency>
  704. <groupId>org.codehaus.janino</groupId>
  705. <artifactId>janino</artifactId>
  706. <version>${janino.version}</version>
  707. </dependency>
  708. <dependency>
  709. <groupId>org.yaml</groupId>
  710. <artifactId>snakeyaml</artifactId>
  711. <version>${snakeyaml.version}</version>
  712. </dependency>
  713. <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/datasync -->
  714. <dependency>
  715. <groupId>software.amazon.awssdk</groupId>
  716. <artifactId>datasync</artifactId>
  717. <version>${datasync.version}</version>
  718. </dependency>
  719. <dependency>
  720. <groupId>org.springdoc</groupId>
  721. <artifactId>springdoc-openapi-ui</artifactId>
  722. <version>${springdoc-openapi-ui.version}</version>
  723. </dependency>
  724. <dependency>
  725. <groupId>org.zeroturnaround</groupId>
  726. <artifactId>zt-zip</artifactId>
  727. <version>${zt-zip.version}</version>
  728. </dependency>
  729. </dependencies>
  730. </dependencyManagement>
  731. </project>