pom.xml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <artifactId>dolphinscheduler</artifactId>
  23. <version>2.0.0-SNAPSHOT</version>
  24. </parent>
  25. <artifactId>dolphinscheduler-common</artifactId>
  26. <name>dolphinscheduler-common</name>
  27. <packaging>jar</packaging>
  28. <dependencies>
  29. <!-- dolphinscheduler -->
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-spi</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.httpcomponents</groupId>
  36. <artifactId>httpclient</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.ow2.asm</groupId>
  40. <artifactId>asm</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.guava</groupId>
  44. <artifactId>guava</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.mockito</groupId>
  48. <artifactId>mockito-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-configuration</groupId>
  53. <artifactId>commons-configuration</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.fasterxml.jackson.core</groupId>
  57. <artifactId>jackson-annotations</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fasterxml.jackson.core</groupId>
  61. <artifactId>jackson-databind</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-collections4</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-beanutils</groupId>
  69. <artifactId>commons-beanutils</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.hadoop</groupId>
  73. <artifactId>hadoop-common</artifactId>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-log4j12</artifactId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>jdk.tools</groupId>
  81. <artifactId>jdk.tools</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <artifactId>servlet-api</artifactId>
  85. <groupId>javax.servlet</groupId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>javax.servlet</groupId>
  89. <artifactId>servlet-api</artifactId>
  90. </exclusion>
  91. <exclusion>
  92. <groupId>log4j</groupId>
  93. <artifactId>log4j</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>org.apache.curator</groupId>
  97. <artifactId>curator-client</artifactId>
  98. </exclusion>
  99. <exclusion>
  100. <groupId>commons-configuration</groupId>
  101. <artifactId>commons-configuration</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>io.grpc</groupId>
  105. <artifactId>grpc-protobuf</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>io.netty</groupId>
  109. <artifactId>netty</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>org.codehaus.jackson</groupId>
  113. <artifactId>jackson-core-asl</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>org.codehaus.jackson</groupId>
  117. <artifactId>jackson-mapper-asl</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>com.google.protobuf</groupId>
  121. <artifactId>jackson-mapper-asl</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>com.google.code.gson</groupId>
  125. <artifactId>gson</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>xmlenc</groupId>
  129. <artifactId>xmlenc</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>commons-net</groupId>
  133. <artifactId>commons-net</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>org.apache.avro</groupId>
  137. <artifactId>avro</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.zookeeper</groupId>
  141. <artifactId>zookeeper</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>javax.servlet.jsp</groupId>
  145. <artifactId>jsp-api</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <artifactId>jersey-json</artifactId>
  149. <groupId>com.sun.jersey</groupId>
  150. </exclusion>
  151. <exclusion>
  152. <artifactId>jersey-server</artifactId>
  153. <groupId>com.sun.jersey</groupId>
  154. </exclusion>
  155. <exclusion>
  156. <artifactId>jersey-core</artifactId>
  157. <groupId>com.sun.jersey</groupId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.hadoop</groupId>
  163. <artifactId>hadoop-client</artifactId>
  164. <exclusions>
  165. <exclusion>
  166. <groupId>org.slf4j</groupId>
  167. <artifactId>slf4j-log4j12</artifactId>
  168. </exclusion>
  169. <exclusion>
  170. <artifactId>servlet-api</artifactId>
  171. <groupId>javax.servlet</groupId>
  172. </exclusion>
  173. <exclusion>
  174. <groupId>org.codehaus.jackson</groupId>
  175. <artifactId>jackson-jaxrs</artifactId>
  176. </exclusion>
  177. <exclusion>
  178. <groupId>org.codehaus.jackson</groupId>
  179. <artifactId>jackson-xc</artifactId>
  180. </exclusion>
  181. <exclusion>
  182. <groupId>org.fusesource.leveldbjni</groupId>
  183. <artifactId>leveldbjni-all</artifactId>
  184. </exclusion>
  185. <exclusion>
  186. <groupId>org.apache.zookeeper</groupId>
  187. <artifactId>zookeeper</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>org.apache.hadoop</groupId>
  191. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <artifactId>jersey-client</artifactId>
  195. <groupId>com.sun.jersey</groupId>
  196. </exclusion>
  197. <exclusion>
  198. <artifactId>jersey-core</artifactId>
  199. <groupId>com.sun.jersey</groupId>
  200. </exclusion>
  201. <exclusion>
  202. <artifactId>jaxb-api</artifactId>
  203. <groupId>javax.xml.bind</groupId>
  204. </exclusion>
  205. <exclusion>
  206. <artifactId>log4j</artifactId>
  207. <groupId>log4j</groupId>
  208. </exclusion>
  209. </exclusions>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.hadoop</groupId>
  213. <artifactId>hadoop-hdfs</artifactId>
  214. <exclusions>
  215. <exclusion>
  216. <groupId>javax.servlet</groupId>
  217. <artifactId>servlet-api</artifactId>
  218. </exclusion>
  219. <exclusion>
  220. <groupId>io.netty</groupId>
  221. <artifactId>netty</artifactId>
  222. </exclusion>
  223. <exclusion>
  224. <groupId>com.google.protobuf</groupId>
  225. <artifactId>protobuf-java</artifactId>
  226. </exclusion>
  227. <exclusion>
  228. <groupId>xmlenc</groupId>
  229. <artifactId>xmlenc</artifactId>
  230. </exclusion>
  231. <exclusion>
  232. <groupId>io.netty</groupId>
  233. <artifactId>netty-all</artifactId>
  234. </exclusion>
  235. <exclusion>
  236. <groupId>org.fusesource.leveldbjni</groupId>
  237. <artifactId>leveldbjni-all</artifactId>
  238. </exclusion>
  239. <exclusion>
  240. <artifactId>jersey-core</artifactId>
  241. <groupId>com.sun.jersey</groupId>
  242. </exclusion>
  243. <exclusion>
  244. <artifactId>jersey-server</artifactId>
  245. <groupId>com.sun.jersey</groupId>
  246. </exclusion>
  247. <exclusion>
  248. <artifactId>log4j</artifactId>
  249. <groupId>log4j</groupId>
  250. </exclusion>
  251. </exclusions>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.apache.hadoop</groupId>
  255. <artifactId>hadoop-aws</artifactId>
  256. <exclusions>
  257. <exclusion>
  258. <groupId>org.apache.hadoop</groupId>
  259. <artifactId>hadoop-common</artifactId>
  260. </exclusion>
  261. <exclusion>
  262. <groupId>com.fasterxml.jackson.core</groupId>
  263. <artifactId>jackson-core</artifactId>
  264. </exclusion>
  265. <exclusion>
  266. <groupId>com.fasterxml.jackson.core</groupId>
  267. <artifactId>jackson-databind</artifactId>
  268. </exclusion>
  269. <exclusion>
  270. <groupId>com.fasterxml.jackson.core</groupId>
  271. <artifactId>jackson-annotations</artifactId>
  272. </exclusion>
  273. </exclusions>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.postgresql</groupId>
  277. <artifactId>postgresql</artifactId>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.hive</groupId>
  281. <artifactId>hive-jdbc</artifactId>
  282. <exclusions>
  283. <exclusion>
  284. <artifactId>slf4j-log4j12</artifactId>
  285. <groupId>org.slf4j</groupId>
  286. </exclusion>
  287. <exclusion>
  288. <groupId>org.eclipse.jetty.aggregate</groupId>
  289. <artifactId>jetty-all</artifactId>
  290. </exclusion>
  291. <exclusion>
  292. <groupId>org.apache.ant</groupId>
  293. <artifactId>ant</artifactId>
  294. </exclusion>
  295. <exclusion>
  296. <groupId>io.dropwizard.metrics</groupId>
  297. <artifactId>metrics-json</artifactId>
  298. </exclusion>
  299. <exclusion>
  300. <groupId>io.dropwizard.metrics</groupId>
  301. <artifactId>metrics-jvm</artifactId>
  302. </exclusion>
  303. <exclusion>
  304. <groupId>com.github.joshelser</groupId>
  305. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  306. </exclusion>
  307. <exclusion>
  308. <groupId>io.netty</groupId>
  309. <artifactId>netty-all</artifactId>
  310. </exclusion>
  311. <exclusion>
  312. <groupId>com.google.code.gson</groupId>
  313. <artifactId>gson</artifactId>
  314. </exclusion>
  315. <exclusion>
  316. <groupId>io.dropwizard.metrics</groupId>
  317. <artifactId>metrics-core</artifactId>
  318. </exclusion>
  319. <exclusion>
  320. <groupId>javax.servlet</groupId>
  321. <artifactId>servlet-api</artifactId>
  322. </exclusion>
  323. <exclusion>
  324. <groupId>org.apache.avro</groupId>
  325. <artifactId>avro</artifactId>
  326. </exclusion>
  327. <exclusion>
  328. <groupId>org.apache.curator</groupId>
  329. <artifactId>curator-client</artifactId>
  330. </exclusion>
  331. <exclusion>
  332. <groupId>org.apache.hadoop</groupId>
  333. <artifactId>hadoop-auth</artifactId>
  334. </exclusion>
  335. <exclusion>
  336. <groupId>org.apache.hadoop</groupId>
  337. <artifactId>hadoop-mapreduce-client-core</artifactId>
  338. </exclusion>
  339. <exclusion>
  340. <groupId>org.apache.hadoop</groupId>
  341. <artifactId>hadoop-yarn-api</artifactId>
  342. </exclusion>
  343. <exclusion>
  344. <groupId>org.apache.zookeeper</groupId>
  345. <artifactId>zookeeper</artifactId>
  346. </exclusion>
  347. <exclusion>
  348. <groupId>org.codehaus.jackson</groupId>
  349. <artifactId>jackson-jaxrs</artifactId>
  350. </exclusion>
  351. <exclusion>
  352. <groupId>org.codehaus.jackson</groupId>
  353. <artifactId>jackson-xc</artifactId>
  354. </exclusion>
  355. <exclusion>
  356. <groupId>com.google.protobuf</groupId>
  357. <artifactId>protobuf-java</artifactId>
  358. </exclusion>
  359. <exclusion>
  360. <groupId>org.json</groupId>
  361. <artifactId>json</artifactId>
  362. </exclusion>
  363. <exclusion>
  364. <artifactId>log4j-slf4j-impl</artifactId>
  365. <groupId>org.apache.logging.log4j</groupId>
  366. </exclusion>
  367. <exclusion>
  368. <artifactId>javax.servlet</artifactId>
  369. <groupId>org.eclipse.jetty.orbit</groupId>
  370. </exclusion>
  371. <exclusion>
  372. <artifactId>servlet-api-2.5</artifactId>
  373. <groupId>org.mortbay.jetty</groupId>
  374. </exclusion>
  375. <exclusion>
  376. <artifactId>jasper-runtime</artifactId>
  377. <groupId>tomcat</groupId>
  378. </exclusion>
  379. <exclusion>
  380. <artifactId>slider-core</artifactId>
  381. <groupId>org.apache.slider</groupId>
  382. </exclusion>
  383. <exclusion>
  384. <artifactId>hbase-server</artifactId>
  385. <groupId>org.apache.hbase</groupId>
  386. </exclusion>
  387. <exclusion>
  388. <artifactId>jersey-client</artifactId>
  389. <groupId>com.sun.jersey</groupId>
  390. </exclusion>
  391. <exclusion>
  392. <artifactId>jersey-core</artifactId>
  393. <groupId>com.sun.jersey</groupId>
  394. </exclusion>
  395. <exclusion>
  396. <artifactId>jersey-json</artifactId>
  397. <groupId>com.sun.jersey</groupId>
  398. </exclusion>
  399. <exclusion>
  400. <artifactId>jersey-server</artifactId>
  401. <groupId>com.sun.jersey</groupId>
  402. </exclusion>
  403. <exclusion>
  404. <artifactId>jersey-guice</artifactId>
  405. <groupId>com.sun.jersey.contribs</groupId>
  406. </exclusion>
  407. <exclusion>
  408. <artifactId>hbase-common</artifactId>
  409. <groupId>org.apache.hbase</groupId>
  410. </exclusion>
  411. <exclusion>
  412. <artifactId>hbase-hadoop2-compat</artifactId>
  413. <groupId>org.apache.hbase</groupId>
  414. </exclusion>
  415. <exclusion>
  416. <artifactId>hbase-client</artifactId>
  417. <groupId>org.apache.hbase</groupId>
  418. </exclusion>
  419. <exclusion>
  420. <artifactId>hbase-hadoop-compat</artifactId>
  421. <groupId>org.apache.hbase</groupId>
  422. </exclusion>
  423. <exclusion>
  424. <artifactId>tephra-hbase-compat-1.0</artifactId>
  425. <groupId>co.cask.tephra</groupId>
  426. </exclusion>
  427. <exclusion>
  428. <artifactId>jaxb-api</artifactId>
  429. <groupId>javax.xml.bind</groupId>
  430. </exclusion>
  431. <exclusion>
  432. <artifactId>hive-llap-client</artifactId>
  433. <groupId>org.apache.hive</groupId>
  434. </exclusion>
  435. <exclusion>
  436. <artifactId>hive-llap-common</artifactId>
  437. <groupId>org.apache.hive</groupId>
  438. </exclusion>
  439. <exclusion>
  440. <artifactId>hive-llap-server</artifactId>
  441. <groupId>org.apache.hive</groupId>
  442. </exclusion>
  443. <exclusion>
  444. <artifactId>tephra-core</artifactId>
  445. <groupId>co.cask.tephra</groupId>
  446. </exclusion>
  447. <exclusion>
  448. <artifactId>ant</artifactId>
  449. <groupId>ant</groupId>
  450. </exclusion>
  451. <exclusion>
  452. <artifactId>stringtemplate</artifactId>
  453. <groupId>org.antlr</groupId>
  454. </exclusion>
  455. <exclusion>
  456. <artifactId>antlr-runtime</artifactId>
  457. <groupId>org.antlr</groupId>
  458. </exclusion>
  459. <exclusion>
  460. <artifactId>hive-shims</artifactId>
  461. <groupId>org.apache.hive</groupId>
  462. </exclusion>
  463. <exclusion>
  464. <artifactId>jsp-api</artifactId>
  465. <groupId>javax.servlet</groupId>
  466. </exclusion>
  467. <exclusion>
  468. <artifactId>log4j-api</artifactId>
  469. <groupId>org.apache.logging.log4j</groupId>
  470. </exclusion>
  471. <exclusion>
  472. <artifactId>log4j-core</artifactId>
  473. <groupId>org.apache.logging.log4j</groupId>
  474. </exclusion>
  475. <exclusion>
  476. <artifactId>log4j-web</artifactId>
  477. <groupId>org.apache.logging.log4j</groupId>
  478. </exclusion>
  479. <exclusion>
  480. <artifactId>jasper-compiler</artifactId>
  481. <groupId>tomcat</groupId>
  482. </exclusion>
  483. </exclusions>
  484. </dependency>
  485. <dependency>
  486. <groupId>ch.qos.logback</groupId>
  487. <artifactId>logback-classic</artifactId>
  488. </dependency>
  489. <dependency>
  490. <groupId>ch.qos.logback</groupId>
  491. <artifactId>logback-core</artifactId>
  492. </dependency>
  493. <dependency>
  494. <groupId>com.github.oshi</groupId>
  495. <artifactId>oshi-core</artifactId>
  496. </dependency>
  497. <dependency>
  498. <groupId>ru.yandex.clickhouse</groupId>
  499. <artifactId>clickhouse-jdbc</artifactId>
  500. <exclusions>
  501. <exclusion>
  502. <artifactId>com.fasterxml.jackson.core</artifactId>
  503. <groupId>jackson-core</groupId>
  504. </exclusion>
  505. <exclusion>
  506. <artifactId>com.fasterxml.jackson.core</artifactId>
  507. <groupId>jackson-databind</groupId>
  508. </exclusion>
  509. <exclusion>
  510. <artifactId>jaxb-api</artifactId>
  511. <groupId>javax.xml.bind</groupId>
  512. </exclusion>
  513. </exclusions>
  514. </dependency>
  515. <dependency>
  516. <groupId>com.microsoft.sqlserver</groupId>
  517. <artifactId>mssql-jdbc</artifactId>
  518. <exclusions>
  519. <exclusion>
  520. <artifactId>azure-keyvault</artifactId>
  521. <groupId>com.microsoft.azure</groupId>
  522. </exclusion>
  523. </exclusions>
  524. </dependency>
  525. <dependency>
  526. <groupId>com.facebook.presto</groupId>
  527. <artifactId>presto-jdbc</artifactId>
  528. </dependency>
  529. <dependency>
  530. <groupId>com.baomidou</groupId>
  531. <artifactId>mybatis-plus-annotation</artifactId>
  532. <version>${mybatis-plus.version}</version>
  533. </dependency>
  534. <dependency>
  535. <groupId>com.github.rholder</groupId>
  536. <artifactId>guava-retrying</artifactId>
  537. </dependency>
  538. <dependency>
  539. <groupId>io.netty</groupId>
  540. <artifactId>netty-all</artifactId>
  541. </dependency>
  542. </dependencies>
  543. </project>