pom.xml 17 KB

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