pom.xml 17 KB

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