pom.xml 17 KB

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