pom.xml 17 KB

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