pom.xml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  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.1.52</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.31</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. </properties>
  101. <dependencyManagement>
  102. <dependencies>
  103. <!-- netty -->
  104. <dependency>
  105. <groupId>io.netty</groupId>
  106. <artifactId>netty-bom</artifactId>
  107. <version>${netty.version}</version>
  108. <type>pom</type>
  109. <scope>import</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>io.netty</groupId>
  113. <artifactId>netty-all</artifactId>
  114. <version>${netty.version}</version>
  115. </dependency>
  116. <!-- spring -->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-parent</artifactId>
  120. <version>${spring-boot.version}</version>
  121. <type>pom</type>
  122. <scope>import</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-test</artifactId>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.java-websocket</groupId>
  131. <artifactId>Java-WebSocket</artifactId>
  132. <version>${java-websocket.version}</version>
  133. </dependency>
  134. <!-- mybatis -->
  135. <dependency>
  136. <groupId>com.baomidou</groupId>
  137. <artifactId>mybatis-plus-boot-starter</artifactId>
  138. <version>${mybatis-plus.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.baomidou</groupId>
  142. <artifactId>mybatis-plus</artifactId>
  143. <version>${mybatis-plus.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.baomidou</groupId>
  147. <artifactId>mybatis-plus-annotation</artifactId>
  148. <version>${mybatis-plus.version}</version>
  149. </dependency>
  150. <!-- quartz-->
  151. <dependency>
  152. <groupId>org.quartz-scheduler</groupId>
  153. <artifactId>quartz</artifactId>
  154. <version>${quartz.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.cronutils</groupId>
  158. <artifactId>cron-utils</artifactId>
  159. <version>${cron-utils.version}</version>
  160. <exclusions>
  161. <exclusion>
  162. <groupId>org.javassist</groupId>
  163. <artifactId>javassist</artifactId>
  164. </exclusion>
  165. </exclusions>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.alibaba</groupId>
  169. <artifactId>druid</artifactId>
  170. <version>${druid.version}</version>
  171. </dependency>
  172. <!-- Zookeeper -->
  173. <dependency>
  174. <groupId>org.apache.zookeeper</groupId>
  175. <artifactId>zookeeper</artifactId>
  176. <version>${zookeeper.version}</version>
  177. <exclusions>
  178. <exclusion>
  179. <groupId>org.slf4j</groupId>
  180. <artifactId>slf4j-log4j12</artifactId>
  181. </exclusion>
  182. <exclusion>
  183. <groupId>io.netty</groupId>
  184. <artifactId>netty</artifactId>
  185. </exclusion>
  186. <exclusion>
  187. <groupId>com.github.spotbugs</groupId>
  188. <artifactId>spotbugs-annotations</artifactId>
  189. </exclusion>
  190. </exclusions>
  191. </dependency>
  192. <dependency>
  193. <groupId>io.dropwizard.metrics</groupId>
  194. <artifactId>metrics-core</artifactId>
  195. <version>${dropwizard.metrics-version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.xerial.snappy</groupId>
  199. <artifactId>snappy-java</artifactId>
  200. <version>${snappy.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.curator</groupId>
  204. <artifactId>curator-framework</artifactId>
  205. <version>${curator.version}</version>
  206. <exclusions>
  207. <exclusion>
  208. <groupId>org.slf4j</groupId>
  209. <artifactId>slf4j-log4j12</artifactId>
  210. </exclusion>
  211. </exclusions>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.apache.curator</groupId>
  215. <artifactId>curator-client</artifactId>
  216. <version>${curator.version}</version>
  217. <exclusions>
  218. <exclusion>
  219. <groupId>log4j-1.2-api</groupId>
  220. <artifactId>org.apache.logging.log4j</artifactId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.curator</groupId>
  226. <artifactId>curator-recipes</artifactId>
  227. <version>${curator.version}</version>
  228. <exclusions>
  229. <exclusion>
  230. <groupId>org.apache.zookeeper</groupId>
  231. <artifactId>zookeeper</artifactId>
  232. </exclusion>
  233. </exclusions>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.curator</groupId>
  237. <artifactId>curator-test</artifactId>
  238. <version>${curator.version}</version>
  239. </dependency>
  240. <!-- Etcd -->
  241. <dependency>
  242. <groupId>io.etcd</groupId>
  243. <artifactId>jetcd-core</artifactId>
  244. <version>${jetcd.version}</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>io.etcd</groupId>
  248. <artifactId>jetcd-test</artifactId>
  249. <version>${jetcd.test.version}</version>
  250. <scope>test</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>io.grpc</groupId>
  254. <artifactId>grpc-bom</artifactId>
  255. <version>${io.grpc.version}</version>
  256. <type>pom</type>
  257. <scope>import</scope>
  258. </dependency>
  259. <dependency>
  260. <groupId>commons-codec</groupId>
  261. <artifactId>commons-codec</artifactId>
  262. <version>${commons-codec.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>commons-logging</groupId>
  266. <artifactId>commons-logging</artifactId>
  267. <version>${commons-logging.version}</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>commons-httpclient</groupId>
  271. <artifactId>commons-httpclient</artifactId>
  272. <version>${commons-httpclient}</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>commons-beanutils</groupId>
  276. <artifactId>commons-beanutils</artifactId>
  277. <version>${commons-beanutils.version}</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>commons-configuration</groupId>
  281. <artifactId>commons-configuration</artifactId>
  282. <version>${commons-configuration.version}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.commons</groupId>
  286. <artifactId>commons-lang3</artifactId>
  287. <version>${commons-lang3.version}</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.apache.commons</groupId>
  291. <artifactId>commons-email</artifactId>
  292. <version>${commons-email.version}</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.httpcomponents</groupId>
  296. <artifactId>httpclient</artifactId>
  297. <version>${httpclient.version}</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.apache.httpcomponents</groupId>
  301. <artifactId>httpcore</artifactId>
  302. <version>${httpcore.version}</version>
  303. </dependency>
  304. <!-- jackson -->
  305. <dependency>
  306. <groupId>com.fasterxml.jackson.core</groupId>
  307. <artifactId>jackson-annotations</artifactId>
  308. <version>${jackson.version}</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>com.fasterxml.jackson.core</groupId>
  312. <artifactId>jackson-databind</artifactId>
  313. <version>${jackson.version}</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>com.fasterxml.jackson.core</groupId>
  317. <artifactId>jackson-core</artifactId>
  318. <version>${jackson.version}</version>
  319. </dependency>
  320. <!--protostuff-->
  321. <dependency>
  322. <groupId>io.protostuff</groupId>
  323. <artifactId>protostuff-core</artifactId>
  324. <version>${protostuff.version}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>io.protostuff</groupId>
  328. <artifactId>protostuff-runtime</artifactId>
  329. <version>${protostuff.version}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>net.bytebuddy</groupId>
  333. <artifactId>byte-buddy</artifactId>
  334. <version>${byte-buddy.version}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.reflections</groupId>
  338. <artifactId>reflections</artifactId>
  339. <version>${reflections.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>mysql</groupId>
  343. <artifactId>mysql-connector-java</artifactId>
  344. <version>${mysql-connector.version}</version>
  345. <scope>test</scope>
  346. </dependency>
  347. <dependency>
  348. <groupId>com.oracle.database.jdbc</groupId>
  349. <artifactId>ojdbc8</artifactId>
  350. <version>${oracle-jdbc.version}</version>
  351. <scope>test</scope>
  352. </dependency>
  353. <dependency>
  354. <groupId>com.h2database</groupId>
  355. <artifactId>h2</artifactId>
  356. <version>${h2.version}</version>
  357. </dependency>
  358. <!-- sl4j -->
  359. <dependency>
  360. <groupId>org.slf4j</groupId>
  361. <artifactId>slf4j-api</artifactId>
  362. <version>${slf4j.version}</version>
  363. </dependency>
  364. <dependency>
  365. <groupId>org.slf4j</groupId>
  366. <artifactId>slf4j-log4j12</artifactId>
  367. <version>${slf4j.version}</version>
  368. </dependency>
  369. <!-- logback -->
  370. <dependency>
  371. <groupId>ch.qos.logback</groupId>
  372. <artifactId>logback-classic</artifactId>
  373. <version>${logback.version}</version>
  374. </dependency>
  375. <dependency>
  376. <groupId>ch.qos.logback</groupId>
  377. <artifactId>logback-core</artifactId>
  378. <version>${logback.version}</version>
  379. </dependency>
  380. <!--excel poi-->
  381. <dependency>
  382. <groupId>org.apache.poi</groupId>
  383. <artifactId>poi</artifactId>
  384. <version>${poi.version}</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>org.apache.poi</groupId>
  388. <artifactId>poi-ooxml</artifactId>
  389. <version>${poi.version}</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>com.squareup.okhttp3</groupId>
  393. <artifactId>okhttp</artifactId>
  394. <version>${okhttp.version}</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>com.squareup.okhttp3</groupId>
  398. <artifactId>mockwebserver</artifactId>
  399. <version>${okhttp.version}</version>
  400. <scope>test</scope>
  401. </dependency>
  402. <!-- hadoop -->
  403. <dependency>
  404. <groupId>org.apache.hadoop</groupId>
  405. <artifactId>hadoop-common</artifactId>
  406. <version>${hadoop.version}</version>
  407. <exclusions>
  408. <exclusion>
  409. <groupId>org.slf4j</groupId>
  410. <artifactId>slf4j-log4j12</artifactId>
  411. </exclusion>
  412. <exclusion>
  413. <groupId>jersey-json</groupId>
  414. <artifactId>com.sun.jersey</artifactId>
  415. </exclusion>
  416. <exclusion>
  417. <groupId>junit</groupId>
  418. <artifactId>junit</artifactId>
  419. </exclusion>
  420. <exclusion>
  421. <groupId>javax.servlet</groupId>
  422. <artifactId>servlet-api</artifactId>
  423. </exclusion>
  424. <exclusion>
  425. <groupId>org.slf4j</groupId>
  426. <artifactId>slf4j-reload4j</artifactId>
  427. </exclusion>
  428. </exclusions>
  429. </dependency>
  430. <dependency>
  431. <groupId>org.apache.hadoop</groupId>
  432. <artifactId>hadoop-client</artifactId>
  433. <version>${hadoop.version}</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>org.apache.hadoop</groupId>
  437. <artifactId>hadoop-hdfs</artifactId>
  438. <version>${hadoop.version}</version>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.apache.hadoop</groupId>
  442. <artifactId>hadoop-yarn-common</artifactId>
  443. <version>${hadoop.version}</version>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.apache.htrace</groupId>
  447. <artifactId>htrace-core4</artifactId>
  448. <scope>provided</scope>
  449. <!-- set to provided to exclude from all hadoop-* transitive dependencies -->
  450. </dependency>
  451. <!-- replace htrace-core with hbase-noop-htrace for CVE -->
  452. <dependency>
  453. <groupId>org.apache.hbase.thirdparty</groupId>
  454. <artifactId>hbase-noop-htrace</artifactId>
  455. <version>${htrace.version}</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.apache.commons</groupId>
  459. <artifactId>commons-collections4</artifactId>
  460. <version>${commons-collections4.version}</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>com.google.guava</groupId>
  464. <artifactId>guava</artifactId>
  465. <version>${guava.version}</version>
  466. </dependency>
  467. <dependency>
  468. <groupId>org.postgresql</groupId>
  469. <artifactId>postgresql</artifactId>
  470. <version>${postgresql.version}</version>
  471. </dependency>
  472. <dependency>
  473. <groupId>org.apache.hive</groupId>
  474. <artifactId>hive-jdbc</artifactId>
  475. <version>${hive-jdbc.version}</version>
  476. <exclusions>
  477. <exclusion>
  478. <groupId>org.apache.orc</groupId>
  479. <artifactId>orc-core</artifactId>
  480. </exclusion>
  481. </exclusions>
  482. </dependency>
  483. <dependency>
  484. <groupId>commons-io</groupId>
  485. <artifactId>commons-io</artifactId>
  486. <version>${commons-io.version}</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>com.github.oshi</groupId>
  490. <artifactId>oshi-core</artifactId>
  491. <version>${oshi-core.version}</version>
  492. <exclusions>
  493. <exclusion>
  494. <groupId>org.slf4j</groupId>
  495. <artifactId>slf4j-simple</artifactId>
  496. </exclusion>
  497. <exclusion>
  498. <groupId>org.junit.jupiter</groupId>
  499. <artifactId>junit-jupiter-api</artifactId>
  500. </exclusion>
  501. <exclusion>
  502. <groupId>org.hamcrest</groupId>
  503. <artifactId>hamcrest</artifactId>
  504. </exclusion>
  505. </exclusions>
  506. </dependency>
  507. <dependency>
  508. <groupId>ru.yandex.clickhouse</groupId>
  509. <artifactId>clickhouse-jdbc</artifactId>
  510. <version>${clickhouse-jdbc.version}</version>
  511. </dependency>
  512. <dependency>
  513. <groupId>com.microsoft.sqlserver</groupId>
  514. <artifactId>mssql-jdbc</artifactId>
  515. <version>${mssql-jdbc.version}</version>
  516. </dependency>
  517. <dependency>
  518. <groupId>com.facebook.presto</groupId>
  519. <artifactId>presto-jdbc</artifactId>
  520. <version>${presto-jdbc.version}</version>
  521. </dependency>
  522. <dependency>
  523. <groupId>javax.servlet</groupId>
  524. <artifactId>servlet-api</artifactId>
  525. <version>${servlet-api.version}</version>
  526. </dependency>
  527. <dependency>
  528. <groupId>javax.servlet</groupId>
  529. <artifactId>javax.servlet-api</artifactId>
  530. <version>${javax.servlet-api.version}</version>
  531. </dependency>
  532. <dependency>
  533. <groupId>com.github.rholder</groupId>
  534. <artifactId>guava-retrying</artifactId>
  535. <version>${guava-retry.version}</version>
  536. </dependency>
  537. <dependency>
  538. <groupId>javax.activation</groupId>
  539. <artifactId>activation</artifactId>
  540. <version>${activation.version}</version>
  541. </dependency>
  542. <dependency>
  543. <groupId>com.sun.mail</groupId>
  544. <artifactId>javax.mail</artifactId>
  545. <version>${javax-mail}</version>
  546. </dependency>
  547. <dependency>
  548. <groupId>net.sf.py4j</groupId>
  549. <artifactId>py4j</artifactId>
  550. <version>${py4j.version}</version>
  551. </dependency>
  552. <dependency>
  553. <groupId>com.google.code.findbugs</groupId>
  554. <artifactId>jsr305</artifactId>
  555. <version>${jsr305.version}</version>
  556. </dependency>
  557. <dependency>
  558. <groupId>org.apache.commons</groupId>
  559. <artifactId>commons-compress</artifactId>
  560. <version>${commons-compress.version}</version>
  561. </dependency>
  562. <dependency>
  563. <groupId>org.apache.commons</groupId>
  564. <artifactId>commons-math3</artifactId>
  565. <version>${commons-math3.version}</version>
  566. </dependency>
  567. <dependency>
  568. <groupId>com.google.errorprone</groupId>
  569. <artifactId>error_prone_annotations</artifactId>
  570. <version>${error_prone_annotations.version}</version>
  571. </dependency>
  572. <!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
  573. <dependency>
  574. <groupId>org.hibernate.validator</groupId>
  575. <artifactId>hibernate-validator</artifactId>
  576. <version>${hibernate-validator.version}</version>
  577. </dependency>
  578. <dependency>
  579. <groupId>com.amazonaws</groupId>
  580. <artifactId>aws-java-sdk-emr</artifactId>
  581. <version>${aws-sdk.version}</version>
  582. </dependency>
  583. <dependency>
  584. <groupId>com.amazonaws</groupId>
  585. <artifactId>aws-java-sdk-s3</artifactId>
  586. <version>${aws-sdk.version}</version>
  587. </dependency>
  588. <dependency>
  589. <groupId>com.amazonaws</groupId>
  590. <artifactId>aws-java-sdk-sagemaker</artifactId>
  591. <version>${aws-sdk.version}</version>
  592. </dependency>
  593. <dependency>
  594. <groupId>com.amazonaws</groupId>
  595. <artifactId>aws-java-sdk-dms</artifactId>
  596. <version>${aws-sdk.version}</version>
  597. </dependency>
  598. <dependency>
  599. <groupId>com.aliyun.oss</groupId>
  600. <artifactId>aliyun-sdk-oss</artifactId>
  601. <version>${aliyun-sdk-oss.version}</version>
  602. </dependency>
  603. <dependency>
  604. <groupId>joda-time</groupId>
  605. <artifactId>joda-time</artifactId>
  606. <version>${joda-time.version}</version>
  607. </dependency>
  608. <dependency>
  609. <groupId>com.jayway.jsonpath</groupId>
  610. <artifactId>json-path</artifactId>
  611. <version>${json-path.version}</version>
  612. </dependency>
  613. <dependency>
  614. <groupId>org.springframework.cloud</groupId>
  615. <artifactId>spring-cloud-dependencies</artifactId>
  616. <version>${spring-cloud-dependencies.version}</version>
  617. <type>pom</type>
  618. <scope>import</scope>
  619. </dependency>
  620. <dependency>
  621. <groupId>org.lz4</groupId>
  622. <artifactId>lz4-java</artifactId>
  623. <version>${lz4-java.version}</version>
  624. </dependency>
  625. <dependency>
  626. <groupId>org.springframework.ldap</groupId>
  627. <artifactId>spring-ldap-core</artifactId>
  628. <version>${spring-ldap.version}</version>
  629. </dependency>
  630. <dependency>
  631. <groupId>com.google.code.gson</groupId>
  632. <artifactId>gson</artifactId>
  633. <version>${gson.version}</version>
  634. </dependency>
  635. <dependency>
  636. <groupId>org.slf4j</groupId>
  637. <artifactId>slf4j-reload4j</artifactId>
  638. <scope>provided</scope>
  639. </dependency>
  640. <dependency>
  641. <groupId>org.apache.spark</groupId>
  642. <artifactId>spark-core_2.12</artifactId>
  643. <version>${spark.version}</version>
  644. <exclusions>
  645. <exclusion>
  646. <groupId>com.fasterxml.jackson.module</groupId>
  647. <artifactId>jackson-module-scala_2.11</artifactId>
  648. </exclusion>
  649. </exclusions>
  650. </dependency>
  651. <dependency>
  652. <groupId>org.apache.spark</groupId>
  653. <artifactId>spark-sql_2.12</artifactId>
  654. <version>${spark.version}</version>
  655. <exclusions>
  656. <exclusion>
  657. <groupId>com.fasterxml.jackson.core</groupId>
  658. <artifactId>jackson-core</artifactId>
  659. </exclusion>
  660. </exclusions>
  661. </dependency>
  662. <dependency>
  663. <groupId>org.apache.spark</groupId>
  664. <artifactId>spark-hive_2.12</artifactId>
  665. <version>${spark.version}</version>
  666. <exclusions>
  667. <exclusion>
  668. <groupId>commons-httpclient</groupId>
  669. <artifactId>commons-httpclient</artifactId>
  670. </exclusion>
  671. <exclusion>
  672. <groupId>org.apache.httpcomponents</groupId>
  673. <artifactId>httpclient</artifactId>
  674. </exclusion>
  675. <exclusion>
  676. <groupId>org.codehaus.jackson</groupId>
  677. <artifactId>jackson-core-asl</artifactId>
  678. </exclusion>
  679. <exclusion>
  680. <groupId>org.codehaus.jackson</groupId>
  681. <artifactId>jackson-mapper-asl</artifactId>
  682. </exclusion>
  683. </exclusions>
  684. </dependency>
  685. <dependency>
  686. <groupId>org.codehaus.janino</groupId>
  687. <artifactId>janino</artifactId>
  688. <version>${janino.version}</version>
  689. </dependency>
  690. <dependency>
  691. <groupId>org.yaml</groupId>
  692. <artifactId>snakeyaml</artifactId>
  693. <version>${snakeyaml.version}</version>
  694. </dependency>
  695. <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/datasync -->
  696. <dependency>
  697. <groupId>software.amazon.awssdk</groupId>
  698. <artifactId>datasync</artifactId>
  699. <version>${datasync.version}</version>
  700. </dependency>
  701. <dependency>
  702. <groupId>org.springdoc</groupId>
  703. <artifactId>springdoc-openapi-ui</artifactId>
  704. <version>${springdoc-openapi-ui.version}</version>
  705. </dependency>
  706. </dependencies>
  707. </dependencyManagement>
  708. </project>