pom.xml 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056
  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"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <artifactId>dolphinscheduler</artifactId>
  23. <version>2.0.0-SNAPSHOT</version>
  24. <packaging>pom</packaging>
  25. <name>${project.artifactId}</name>
  26. <url>http://dolphinscheduler.apache.org</url>
  27. <description>Dolphin Scheduler is a distributed and easy-to-expand visual DAG workflow scheduling system, dedicated
  28. to solving the complex dependencies in data processing, making the scheduling system out of the box for data
  29. processing.
  30. </description>
  31. <licenses>
  32. <license>
  33. <name>Apache License 2.0</name>
  34. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  35. <distribution>repo</distribution>
  36. </license>
  37. </licenses>
  38. <scm>
  39. <connection>scm:git:https://github.com/apache/dolphinscheduler.git</connection>
  40. <developerConnection>scm:git:https://github.com/apache/dolphinscheduler.git</developerConnection>
  41. <url>https://github.com/apache/dolphinscheduler</url>
  42. <tag>HEAD</tag>
  43. </scm>
  44. <mailingLists>
  45. <mailingList>
  46. <name>DolphinScheduler Developer List</name>
  47. <post>dev@dolphinscheduler.apache.org</post>
  48. <subscribe>dev-subscribe@dolphinscheduler.apache.org</subscribe>
  49. <unsubscribe>dev-unsubscribe@dolphinscheduler.apache.org</unsubscribe>
  50. </mailingList>
  51. </mailingLists>
  52. <parent>
  53. <groupId>org.apache</groupId>
  54. <artifactId>apache</artifactId>
  55. <version>21</version>
  56. </parent>
  57. <properties>
  58. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  60. <curator.version>4.3.0</curator.version>
  61. <zookeeper.version>3.4.14</zookeeper.version>
  62. <spring.version>5.1.19.RELEASE</spring.version>
  63. <spring.boot.version>2.1.18.RELEASE</spring.boot.version>
  64. <java.version>1.8</java.version>
  65. <logback.version>1.2.3</logback.version>
  66. <hadoop.version>2.7.3</hadoop.version>
  67. <quartz.version>2.3.0</quartz.version>
  68. <jackson.version>2.10.5</jackson.version>
  69. <mybatis-plus.version>3.2.0</mybatis-plus.version>
  70. <mybatis.spring.version>2.0.1</mybatis.spring.version>
  71. <cron.utils.version>5.0.5</cron.utils.version>
  72. <druid.version>1.2.4</druid.version>
  73. <h2.version>1.4.200</h2.version>
  74. <commons.codec.version>1.11</commons.codec.version>
  75. <commons.logging.version>1.1.1</commons.logging.version>
  76. <httpclient.version>4.4.1</httpclient.version>
  77. <httpcore.version>4.4.1</httpcore.version>
  78. <junit.version>4.12</junit.version>
  79. <mysql.connector.version>8.0.16</mysql.connector.version>
  80. <slf4j.api.version>1.7.5</slf4j.api.version>
  81. <slf4j.log4j12.version>1.7.5</slf4j.log4j12.version>
  82. <commons.collections.version>3.2.2</commons.collections.version>
  83. <commons.httpclient>3.0.1</commons.httpclient>
  84. <commons.beanutils.version>1.9.4</commons.beanutils.version>
  85. <commons.configuration.version>1.10</commons.configuration.version>
  86. <commons.lang.version>2.6</commons.lang.version>
  87. <commons.email.version>1.5</commons.email.version>
  88. <poi.version>4.1.2</poi.version>
  89. <javax.servlet.api.version>3.1.0</javax.servlet.api.version>
  90. <commons.collections4.version>4.1</commons.collections4.version>
  91. <guava.version>24.1-jre</guava.version>
  92. <postgresql.version>42.2.5</postgresql.version>
  93. <hive.jdbc.version>2.1.0</hive.jdbc.version>
  94. <commons.io.version>2.4</commons.io.version>
  95. <oshi.core.version>3.9.1</oshi.core.version>
  96. <clickhouse.jdbc.version>0.1.52</clickhouse.jdbc.version>
  97. <mssql.jdbc.version>6.1.0.jre8</mssql.jdbc.version>
  98. <presto.jdbc.version>0.238.1</presto.jdbc.version>
  99. <spotbugs.version>3.1.12</spotbugs.version>
  100. <checkstyle.version>3.1.2</checkstyle.version>
  101. <zookeeper.version>3.4.14</zookeeper.version>
  102. <curator.test>2.12.0</curator.test>
  103. <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
  104. <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
  105. <maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
  106. <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
  107. <maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
  108. <maven-source-plugin.version>2.4</maven-source-plugin.version>
  109. <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
  110. <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
  111. <rpm-maven-plugion.version>2.2.0</rpm-maven-plugion.version>
  112. <jacoco.version>0.8.4</jacoco.version>
  113. <jcip.version>1.0</jcip.version>
  114. <maven.deploy.skip>false</maven.deploy.skip>
  115. <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
  116. <mockito.version>2.21.0</mockito.version>
  117. <powermock.version>2.0.2</powermock.version>
  118. <servlet-api.version>2.5</servlet-api.version>
  119. <swagger.version>1.9.3</swagger.version>
  120. <springfox.version>2.9.2</springfox.version>
  121. <swagger-models.version>1.5.24</swagger-models.version>
  122. <guava-retry.version>2.0.0</guava-retry.version>
  123. <dep.airlift.version>0.184</dep.airlift.version>
  124. <dep.packaging.version>${dep.airlift.version}</dep.packaging.version>
  125. <protostuff.version>1.7.2</protostuff.version>
  126. <reflections.version>0.9.12</reflections.version>
  127. <byte-buddy.version>1.9.16</byte-buddy.version>
  128. <java-websocket.version>1.5.1</java-websocket.version>
  129. <py4j.version>0.10.9</py4j.version>
  130. <auto-service.version>1.0.1</auto-service.version>
  131. <jacoco.skip>false</jacoco.skip>
  132. </properties>
  133. <dependencyManagement>
  134. <dependencies>
  135. <dependency>
  136. <groupId>org.java-websocket</groupId>
  137. <artifactId>Java-WebSocket</artifactId>
  138. <version>${java-websocket.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.baomidou</groupId>
  142. <artifactId>mybatis-plus-boot-starter</artifactId>
  143. <version>${mybatis-plus.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.baomidou</groupId>
  147. <artifactId>mybatis-plus</artifactId>
  148. <version>${mybatis-plus.version}</version>
  149. </dependency>
  150. <!-- quartz-->
  151. <dependency>
  152. <groupId>org.quartz-scheduler</groupId>
  153. <artifactId>quartz</artifactId>
  154. <version>${quartz.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.quartz-scheduler</groupId>
  158. <artifactId>quartz-jobs</artifactId>
  159. <version>${quartz.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.cronutils</groupId>
  163. <artifactId>cron-utils</artifactId>
  164. <version>${cron.utils.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.alibaba</groupId>
  168. <artifactId>druid</artifactId>
  169. <version>${druid.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-starter-parent</artifactId>
  174. <version>${spring.boot.version}</version>
  175. <type>pom</type>
  176. <scope>import</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.springframework</groupId>
  180. <artifactId>spring-core</artifactId>
  181. <version>${spring.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework</groupId>
  185. <artifactId>spring-context</artifactId>
  186. <version>${spring.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework</groupId>
  190. <artifactId>spring-beans</artifactId>
  191. <version>${spring.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.springframework</groupId>
  195. <artifactId>spring-tx</artifactId>
  196. <version>${spring.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework</groupId>
  200. <artifactId>spring-jdbc</artifactId>
  201. <version>${spring.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework</groupId>
  205. <artifactId>spring-test</artifactId>
  206. <version>${spring.version}</version>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.dolphinscheduler</groupId>
  211. <artifactId>dolphinscheduler-server</artifactId>
  212. <version>${project.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.dolphinscheduler</groupId>
  216. <artifactId>dolphinscheduler-standalone-server</artifactId>
  217. <version>${project.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.apache.dolphinscheduler</groupId>
  221. <artifactId>dolphinscheduler-common</artifactId>
  222. <version>${project.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.dolphinscheduler</groupId>
  226. <artifactId>dolphinscheduler-alert-plugin</artifactId>
  227. <version>${project.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.dolphinscheduler</groupId>
  231. <artifactId>dolphinscheduler-registry-plugin</artifactId>
  232. <version>${project.version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.apache.dolphinscheduler</groupId>
  236. <artifactId>dolphinscheduler-dao</artifactId>
  237. <version>${project.version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.apache.dolphinscheduler</groupId>
  241. <artifactId>dolphinscheduler-api</artifactId>
  242. <version>${project.version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.apache.dolphinscheduler</groupId>
  246. <artifactId>dolphinscheduler-remote</artifactId>
  247. <version>${project.version}</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.apache.dolphinscheduler</groupId>
  251. <artifactId>dolphinscheduler-service</artifactId>
  252. <version>${project.version}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.apache.dolphinscheduler</groupId>
  256. <artifactId>dolphinscheduler-spi</artifactId>
  257. <version>${project.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.apache.dolphinscheduler</groupId>
  261. <artifactId>dolphinscheduler-python</artifactId>
  262. <version>${project.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.apache.dolphinscheduler</groupId>
  266. <artifactId>dolphinscheduler-alert-api</artifactId>
  267. <version>${project.version}</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.apache.dolphinscheduler</groupId>
  271. <artifactId>dolphinscheduler-alert-server</artifactId>
  272. <version>${project.version}</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.apache.dolphinscheduler</groupId>
  276. <artifactId>dolphinscheduler-alert-dingtalk</artifactId>
  277. <version>${project.version}</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.dolphinscheduler</groupId>
  281. <artifactId>dolphinscheduler-alert-email</artifactId>
  282. <version>${project.version}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.dolphinscheduler</groupId>
  286. <artifactId>dolphinscheduler-alert-feishu</artifactId>
  287. <version>${project.version}</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.apache.dolphinscheduler</groupId>
  291. <artifactId>dolphinscheduler-alert-http</artifactId>
  292. <version>${project.version}</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.dolphinscheduler</groupId>
  296. <artifactId>dolphinscheduler-alert-script</artifactId>
  297. <version>${project.version}</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.apache.dolphinscheduler</groupId>
  301. <artifactId>dolphinscheduler-alert-slack</artifactId>
  302. <version>${project.version}</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.dolphinscheduler</groupId>
  306. <artifactId>dolphinscheduler-alert-wechat</artifactId>
  307. <version>${project.version}</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.apache.dolphinscheduler</groupId>
  311. <artifactId>dolphinscheduler-registry-api</artifactId>
  312. <version>${project.version}</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.apache.dolphinscheduler</groupId>
  316. <artifactId>dolphinscheduler-registry-zookeeper</artifactId>
  317. <version>${project.version}</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.apache.dolphinscheduler</groupId>
  321. <artifactId>dolphinscheduler-datasource-plugin</artifactId>
  322. <version>${project.version}</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.apache.curator</groupId>
  326. <artifactId>curator-framework</artifactId>
  327. <version>${curator.version}</version>
  328. <exclusions>
  329. <exclusion>
  330. <groupId>org.slf4j</groupId>
  331. <artifactId>slf4j-log4j12</artifactId>
  332. </exclusion>
  333. </exclusions>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.apache.zookeeper</groupId>
  337. <artifactId>zookeeper</artifactId>
  338. <version>${zookeeper.version}</version>
  339. <exclusions>
  340. <exclusion>
  341. <groupId>org.slf4j</groupId>
  342. <artifactId>slf4j-log4j12</artifactId>
  343. </exclusion>
  344. <exclusion>
  345. <artifactId>netty</artifactId>
  346. <groupId>io.netty</groupId>
  347. </exclusion>
  348. <exclusion>
  349. <groupId>com.github.spotbugs</groupId>
  350. <artifactId>spotbugs-annotations</artifactId>
  351. </exclusion>
  352. </exclusions>
  353. </dependency>
  354. <dependency>
  355. <groupId>org.apache.curator</groupId>
  356. <artifactId>curator-client</artifactId>
  357. <version>${curator.version}</version>
  358. <exclusions>
  359. <exclusion>
  360. <groupId>log4j-1.2-api</groupId>
  361. <artifactId>org.apache.logging.log4j</artifactId>
  362. </exclusion>
  363. </exclusions>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.apache.curator</groupId>
  367. <artifactId>curator-recipes</artifactId>
  368. <version>${curator.version}</version>
  369. <exclusions>
  370. <exclusion>
  371. <groupId>org.apache.zookeeper</groupId>
  372. <artifactId>zookeeper</artifactId>
  373. </exclusion>
  374. </exclusions>
  375. </dependency>
  376. <dependency>
  377. <groupId>org.apache.curator</groupId>
  378. <artifactId>curator-test</artifactId>
  379. <version>${curator.test}</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>commons-codec</groupId>
  383. <artifactId>commons-codec</artifactId>
  384. <version>${commons.codec.version}</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>commons-logging</groupId>
  388. <artifactId>commons-logging</artifactId>
  389. <version>${commons.logging.version}</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>org.apache.httpcomponents</groupId>
  393. <artifactId>httpclient</artifactId>
  394. <version>${httpclient.version}</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>org.apache.httpcomponents</groupId>
  398. <artifactId>httpcore</artifactId>
  399. <version>${httpcore.version}</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>com.fasterxml.jackson.core</groupId>
  403. <artifactId>jackson-annotations</artifactId>
  404. <version>${jackson.version}</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>com.fasterxml.jackson.core</groupId>
  408. <artifactId>jackson-databind</artifactId>
  409. <version>${jackson.version}</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>com.fasterxml.jackson.core</groupId>
  413. <artifactId>jackson-core</artifactId>
  414. <version>${jackson.version}</version>
  415. </dependency>
  416. <!--protostuff-->
  417. <!-- https://mvnrepository.com/artifact/io.protostuff/protostuff-core -->
  418. <dependency>
  419. <groupId>io.protostuff</groupId>
  420. <artifactId>protostuff-core</artifactId>
  421. <version>${protostuff.version}</version>
  422. </dependency>
  423. <!-- https://mvnrepository.com/artifact/io.protostuff/protostuff-runtime -->
  424. <dependency>
  425. <groupId>io.protostuff</groupId>
  426. <artifactId>protostuff-runtime</artifactId>
  427. <version>${protostuff.version}</version>
  428. </dependency>
  429. <dependency>
  430. <groupId>net.bytebuddy</groupId>
  431. <artifactId>byte-buddy</artifactId>
  432. <version>${byte-buddy.version}</version>
  433. </dependency>
  434. <dependency>
  435. <groupId>org.reflections</groupId>
  436. <artifactId>reflections</artifactId>
  437. <version>${reflections.version}</version>
  438. </dependency>
  439. <dependency>
  440. <groupId>junit</groupId>
  441. <artifactId>junit</artifactId>
  442. <version>${junit.version}</version>
  443. </dependency>
  444. <dependency>
  445. <groupId>org.mockito</groupId>
  446. <artifactId>mockito-core</artifactId>
  447. <version>${mockito.version}</version>
  448. <type>jar</type>
  449. <scope>test</scope>
  450. </dependency>
  451. <dependency>
  452. <groupId>org.powermock</groupId>
  453. <artifactId>powermock-module-junit4</artifactId>
  454. <version>${powermock.version}</version>
  455. <type>jar</type>
  456. <scope>test</scope>
  457. </dependency>
  458. <dependency>
  459. <groupId>org.powermock</groupId>
  460. <artifactId>powermock-api-mockito2</artifactId>
  461. <version>${powermock.version}</version>
  462. <type>jar</type>
  463. <scope>test</scope>
  464. <exclusions>
  465. <exclusion>
  466. <groupId>org.mockito</groupId>
  467. <artifactId>mockito-core</artifactId>
  468. </exclusion>
  469. </exclusions>
  470. </dependency>
  471. <dependency>
  472. <groupId>org.jacoco</groupId>
  473. <artifactId>org.jacoco.agent</artifactId>
  474. <version>${jacoco.version}</version>
  475. <classifier>runtime</classifier>
  476. <scope>test</scope>
  477. </dependency>
  478. <dependency>
  479. <groupId>mysql</groupId>
  480. <artifactId>mysql-connector-java</artifactId>
  481. <version>${mysql.connector.version}</version>
  482. <scope>test</scope>
  483. </dependency>
  484. <dependency>
  485. <groupId>com.h2database</groupId>
  486. <artifactId>h2</artifactId>
  487. <version>${h2.version}</version>
  488. </dependency>
  489. <dependency>
  490. <groupId>org.slf4j</groupId>
  491. <artifactId>slf4j-api</artifactId>
  492. <version>${slf4j.api.version}</version>
  493. </dependency>
  494. <dependency>
  495. <groupId>org.slf4j</groupId>
  496. <artifactId>slf4j-log4j12</artifactId>
  497. <version>${slf4j.log4j12.version}</version>
  498. </dependency>
  499. <dependency>
  500. <groupId>commons-collections</groupId>
  501. <artifactId>commons-collections</artifactId>
  502. <version>${commons.collections.version}</version>
  503. </dependency>
  504. <dependency>
  505. <groupId>commons-httpclient</groupId>
  506. <artifactId>commons-httpclient</artifactId>
  507. <version>${commons.httpclient}</version>
  508. </dependency>
  509. <dependency>
  510. <groupId>commons-beanutils</groupId>
  511. <artifactId>commons-beanutils</artifactId>
  512. <version>${commons.beanutils.version}</version>
  513. </dependency>
  514. <dependency>
  515. <groupId>commons-configuration</groupId>
  516. <artifactId>commons-configuration</artifactId>
  517. <version>${commons.configuration.version}</version>
  518. </dependency>
  519. <dependency>
  520. <groupId>commons-lang</groupId>
  521. <artifactId>commons-lang</artifactId>
  522. <version>${commons.lang.version}</version>
  523. </dependency>
  524. <dependency>
  525. <groupId>ch.qos.logback</groupId>
  526. <artifactId>logback-classic</artifactId>
  527. <version>${logback.version}</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>ch.qos.logback</groupId>
  531. <artifactId>logback-core</artifactId>
  532. <version>${logback.version}</version>
  533. </dependency>
  534. <dependency>
  535. <groupId>org.apache.commons</groupId>
  536. <artifactId>commons-email</artifactId>
  537. <version>${commons.email.version}</version>
  538. </dependency>
  539. <!--excel poi-->
  540. <dependency>
  541. <groupId>org.apache.poi</groupId>
  542. <artifactId>poi</artifactId>
  543. <version>${poi.version}</version>
  544. </dependency>
  545. <dependency>
  546. <groupId>org.apache.poi</groupId>
  547. <artifactId>poi-ooxml</artifactId>
  548. <version>${poi.version}</version>
  549. </dependency>
  550. <!-- hadoop -->
  551. <dependency>
  552. <groupId>org.apache.hadoop</groupId>
  553. <artifactId>hadoop-common</artifactId>
  554. <version>${hadoop.version}</version>
  555. <exclusions>
  556. <exclusion>
  557. <artifactId>slf4j-log4j12</artifactId>
  558. <groupId>org.slf4j</groupId>
  559. </exclusion>
  560. <exclusion>
  561. <artifactId>com.sun.jersey</artifactId>
  562. <groupId>jersey-json</groupId>
  563. </exclusion>
  564. </exclusions>
  565. </dependency>
  566. <dependency>
  567. <groupId>org.apache.hadoop</groupId>
  568. <artifactId>hadoop-client</artifactId>
  569. <version>${hadoop.version}</version>
  570. </dependency>
  571. <dependency>
  572. <groupId>org.apache.hadoop</groupId>
  573. <artifactId>hadoop-hdfs</artifactId>
  574. <version>${hadoop.version}</version>
  575. </dependency>
  576. <dependency>
  577. <groupId>org.apache.hadoop</groupId>
  578. <artifactId>hadoop-yarn-common</artifactId>
  579. <version>${hadoop.version}</version>
  580. </dependency>
  581. <dependency>
  582. <groupId>org.apache.hadoop</groupId>
  583. <artifactId>hadoop-aws</artifactId>
  584. <version>${hadoop.version}</version>
  585. </dependency>
  586. <dependency>
  587. <groupId>org.apache.commons</groupId>
  588. <artifactId>commons-collections4</artifactId>
  589. <version>${commons.collections4.version}</version>
  590. </dependency>
  591. <dependency>
  592. <groupId>com.google.guava</groupId>
  593. <artifactId>guava</artifactId>
  594. <version>${guava.version}</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>org.postgresql</groupId>
  598. <artifactId>postgresql</artifactId>
  599. <version>${postgresql.version}</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.apache.hive</groupId>
  603. <artifactId>hive-jdbc</artifactId>
  604. <version>${hive.jdbc.version}</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>commons-io</groupId>
  608. <artifactId>commons-io</artifactId>
  609. <version>${commons.io.version}</version>
  610. </dependency>
  611. <dependency>
  612. <groupId>com.github.oshi</groupId>
  613. <artifactId>oshi-core</artifactId>
  614. <version>${oshi.core.version}</version>
  615. </dependency>
  616. <dependency>
  617. <groupId>ru.yandex.clickhouse</groupId>
  618. <artifactId>clickhouse-jdbc</artifactId>
  619. <version>${clickhouse.jdbc.version}</version>
  620. </dependency>
  621. <dependency>
  622. <groupId>com.microsoft.sqlserver</groupId>
  623. <artifactId>mssql-jdbc</artifactId>
  624. <version>${mssql.jdbc.version}</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>com.facebook.presto</groupId>
  628. <artifactId>presto-jdbc</artifactId>
  629. <version>${presto.jdbc.version}</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>net.jcip</groupId>
  633. <artifactId>jcip-annotations</artifactId>
  634. <version>${jcip.version}</version>
  635. <optional>true</optional>
  636. </dependency>
  637. <dependency>
  638. <groupId>javax.servlet</groupId>
  639. <artifactId>servlet-api</artifactId>
  640. <version>${servlet-api.version}</version>
  641. </dependency>
  642. <dependency>
  643. <groupId>javax.servlet</groupId>
  644. <artifactId>javax.servlet-api</artifactId>
  645. <version>${javax.servlet.api.version}</version>
  646. </dependency>
  647. <dependency>
  648. <groupId>io.springfox</groupId>
  649. <artifactId>springfox-swagger2</artifactId>
  650. <version>${springfox.version}</version>
  651. </dependency>
  652. <dependency>
  653. <groupId>io.springfox</groupId>
  654. <artifactId>springfox-swagger-ui</artifactId>
  655. <version>${springfox.version}</version>
  656. </dependency>
  657. <dependency>
  658. <groupId>io.swagger</groupId>
  659. <artifactId>swagger-models</artifactId>
  660. <version>${swagger-models.version}</version>
  661. </dependency>
  662. <dependency>
  663. <groupId>com.github.xiaoymin</groupId>
  664. <artifactId>swagger-bootstrap-ui</artifactId>
  665. <version>${swagger.version}</version>
  666. </dependency>
  667. <dependency>
  668. <groupId>com.github.rholder</groupId>
  669. <artifactId>guava-retrying</artifactId>
  670. <version>${guava-retry.version}</version>
  671. </dependency>
  672. <dependency>
  673. <groupId>org.sonatype.aether</groupId>
  674. <artifactId>aether-api</artifactId>
  675. <version>1.13.1</version>
  676. </dependency>
  677. <dependency>
  678. <groupId>io.airlift.resolver</groupId>
  679. <artifactId>resolver</artifactId>
  680. <version>1.5</version>
  681. </dependency>
  682. <dependency>
  683. <groupId>org.ow2.asm</groupId>
  684. <artifactId>asm</artifactId>
  685. <version>6.2.1</version>
  686. </dependency>
  687. <dependency>
  688. <groupId>javax.activation</groupId>
  689. <artifactId>activation</artifactId>
  690. <version>1.1</version>
  691. </dependency>
  692. <dependency>
  693. <groupId>com.sun.mail</groupId>
  694. <artifactId>javax.mail</artifactId>
  695. <version>1.6.2</version>
  696. </dependency>
  697. <dependency>
  698. <groupId>net.sf.py4j</groupId>
  699. <artifactId>py4j</artifactId>
  700. <version>${py4j.version}</version>
  701. </dependency>
  702. <dependency>
  703. <groupId>com.google.auto.service</groupId>
  704. <artifactId>auto-service</artifactId>
  705. <version>${auto-service.version}</version>
  706. <optional>true</optional>
  707. </dependency>
  708. </dependencies>
  709. </dependencyManagement>
  710. <build>
  711. <finalName>apache-dolphinscheduler-${project.version}</finalName>
  712. <pluginManagement>
  713. <plugins>
  714. <plugin>
  715. <groupId>org.apache.dolphinscheduler</groupId>
  716. <artifactId>dolphinscheduler-maven-plugin</artifactId>
  717. <version>1.0.0</version>
  718. <extensions>true</extensions>
  719. </plugin>
  720. <plugin>
  721. <groupId>ca.vanzyl.maven.plugins</groupId>
  722. <artifactId>provisio-maven-plugin</artifactId>
  723. <version>1.0.4</version>
  724. <extensions>true</extensions>
  725. </plugin>
  726. <plugin>
  727. <groupId>org.codehaus.mojo</groupId>
  728. <artifactId>rpm-maven-plugin</artifactId>
  729. <version>${rpm-maven-plugion.version}</version>
  730. <inherited>false</inherited>
  731. </plugin>
  732. <plugin>
  733. <groupId>org.apache.maven.plugins</groupId>
  734. <artifactId>maven-compiler-plugin</artifactId>
  735. <configuration>
  736. <source>${java.version}</source>
  737. <target>${java.version}</target>
  738. <testSource>${java.version}</testSource>
  739. <testTarget>${java.version}</testTarget>
  740. </configuration>
  741. <version>${maven-compiler-plugin.version}</version>
  742. </plugin>
  743. <plugin>
  744. <groupId>org.apache.maven.plugins</groupId>
  745. <artifactId>maven-surefire-plugin</artifactId>
  746. </plugin>
  747. <plugin>
  748. <groupId>org.apache.maven.plugins</groupId>
  749. <artifactId>maven-release-plugin</artifactId>
  750. <version>${maven-release-plugin.version}</version>
  751. <configuration>
  752. <tagNameFormat>@{project.version}</tagNameFormat>
  753. </configuration>
  754. </plugin>
  755. <plugin>
  756. <groupId>org.apache.maven.plugins</groupId>
  757. <artifactId>maven-assembly-plugin</artifactId>
  758. <version>${maven-assembly-plugin.version}</version>
  759. </plugin>
  760. <plugin>
  761. <groupId>org.apache.maven.plugins</groupId>
  762. <artifactId>maven-javadoc-plugin</artifactId>
  763. <version>${maven-javadoc-plugin.version}</version>
  764. <configuration>
  765. <source>8</source>
  766. <failOnError>false</failOnError>
  767. </configuration>
  768. </plugin>
  769. <plugin>
  770. <groupId>org.apache.maven.plugins</groupId>
  771. <artifactId>maven-source-plugin</artifactId>
  772. <version>${maven-source-plugin.version}</version>
  773. </plugin>
  774. <plugin>
  775. <groupId>org.apache.maven.plugins</groupId>
  776. <artifactId>maven-dependency-plugin</artifactId>
  777. <version>${maven-dependency-plugin.version}</version>
  778. </plugin>
  779. </plugins>
  780. </pluginManagement>
  781. <plugins>
  782. <plugin>
  783. <groupId>org.apache.dolphinscheduler</groupId>
  784. <artifactId>dolphinscheduler-maven-plugin</artifactId>
  785. <extensions>true</extensions>
  786. <!--<configuration>-->
  787. <!--<allowedProvidedDependencies>-->
  788. <!--<allowedProvidedDependency>org.apache.dolphinscheduler:dolphinscheduler-common</allowedProvidedDependency>-->
  789. <!--</allowedProvidedDependencies>-->
  790. <!--</configuration>-->
  791. </plugin>
  792. <plugin>
  793. <groupId>ca.vanzyl.maven.plugins</groupId>
  794. <artifactId>provisio-maven-plugin</artifactId>
  795. <extensions>true</extensions>
  796. </plugin>
  797. <plugin>
  798. <groupId>org.apache.maven.plugins</groupId>
  799. <artifactId>maven-source-plugin</artifactId>
  800. <executions>
  801. <execution>
  802. <id>attach-sources</id>
  803. <phase>verify</phase>
  804. <goals>
  805. <goal>jar-no-fork</goal>
  806. </goals>
  807. </execution>
  808. </executions>
  809. </plugin>
  810. <plugin>
  811. <groupId>org.apache.maven.plugins</groupId>
  812. <artifactId>maven-javadoc-plugin</artifactId>
  813. <version>${maven-javadoc-plugin.version}</version>
  814. <executions>
  815. <execution>
  816. <id>attach-javadocs</id>
  817. <goals>
  818. <goal>jar</goal>
  819. </goals>
  820. </execution>
  821. </executions>
  822. <configuration>
  823. <aggregate>true</aggregate>
  824. <charset>${project.build.sourceEncoding}</charset>
  825. <encoding>${project.build.sourceEncoding}</encoding>
  826. <docencoding>${project.build.sourceEncoding}</docencoding>
  827. </configuration>
  828. </plugin>
  829. <plugin>
  830. <groupId>org.apache.maven.plugins</groupId>
  831. <artifactId>maven-release-plugin</artifactId>
  832. <version>${maven-release-plugin.version}</version>
  833. <configuration>
  834. <autoVersionSubmodules>true</autoVersionSubmodules>
  835. <tagNameFormat>@{project.version}</tagNameFormat>
  836. <tagBase>${project.version}</tagBase>
  837. <!--<goals>-f pom.xml deploy</goals>-->
  838. </configuration>
  839. <dependencies>
  840. <dependency>
  841. <groupId>org.apache.maven.scm</groupId>
  842. <artifactId>maven-scm-provider-jgit</artifactId>
  843. <version>1.9.5</version>
  844. </dependency>
  845. </dependencies>
  846. </plugin>
  847. <plugin>
  848. <groupId>org.apache.maven.plugins</groupId>
  849. <artifactId>maven-compiler-plugin</artifactId>
  850. <version>${maven-compiler-plugin.version}</version>
  851. <configuration>
  852. <source>${java.version}</source>
  853. <target>${java.version}</target>
  854. <encoding>${project.build.sourceEncoding}</encoding>
  855. <skip>false</skip><!--not skip compile test classes-->
  856. </configuration>
  857. </plugin>
  858. <plugin>
  859. <groupId>org.apache.maven.plugins</groupId>
  860. <artifactId>maven-surefire-plugin</artifactId>
  861. <version>${maven-surefire-plugin.version}</version>
  862. <configuration>
  863. <systemPropertyVariables>
  864. <jacoco-agent.destfile>${project.build.directory}/jacoco.exec</jacoco-agent.destfile>
  865. </systemPropertyVariables>
  866. </configuration>
  867. </plugin>
  868. <!-- jenkins plugin jacoco report-->
  869. <plugin>
  870. <groupId>org.jacoco</groupId>
  871. <artifactId>jacoco-maven-plugin</artifactId>
  872. <version>${jacoco.version}</version>
  873. <configuration>
  874. <skip>${jacoco.skip}</skip>
  875. <dataFile>${project.build.directory}/jacoco.exec</dataFile>
  876. </configuration>
  877. <executions>
  878. <execution>
  879. <id>default-instrument</id>
  880. <goals>
  881. <goal>instrument</goal>
  882. </goals>
  883. </execution>
  884. <execution>
  885. <id>default-restore-instrumented-classes</id>
  886. <goals>
  887. <goal>restore-instrumented-classes</goal>
  888. </goals>
  889. </execution>
  890. <execution>
  891. <id>default-report</id>
  892. <goals>
  893. <goal>report</goal>
  894. </goals>
  895. </execution>
  896. </executions>
  897. </plugin>
  898. <plugin>
  899. <groupId>com.github.spotbugs</groupId>
  900. <artifactId>spotbugs-maven-plugin</artifactId>
  901. <version>${spotbugs.version}</version>
  902. <configuration>
  903. <xmlOutput>true</xmlOutput>
  904. <threshold>medium</threshold>
  905. <effort>default</effort>
  906. <excludeFilterFile>dev-config/spotbugs-exclude.xml</excludeFilterFile>
  907. <failOnError>true</failOnError>
  908. </configuration>
  909. <dependencies>
  910. <dependency>
  911. <groupId>com.github.spotbugs</groupId>
  912. <artifactId>spotbugs</artifactId>
  913. <version>4.0.0-beta4</version>
  914. </dependency>
  915. </dependencies>
  916. </plugin>
  917. <plugin>
  918. <groupId>org.apache.maven.plugins</groupId>
  919. <artifactId>maven-checkstyle-plugin</artifactId>
  920. <version>${checkstyle.version}</version>
  921. <dependencies>
  922. <dependency>
  923. <groupId>com.puppycrawl.tools</groupId>
  924. <artifactId>checkstyle</artifactId>
  925. <version>8.45</version>
  926. </dependency>
  927. </dependencies>
  928. <configuration>
  929. <consoleOutput>true</consoleOutput>
  930. <encoding>UTF-8</encoding>
  931. <configLocation>style/checkstyle.xml</configLocation>
  932. <failOnViolation>true</failOnViolation>
  933. <violationSeverity>warning</violationSeverity>
  934. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  935. <sourceDirectories>
  936. <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
  937. </sourceDirectories>
  938. <excludes>**\/generated-sources\/</excludes>
  939. </configuration>
  940. <executions>
  941. <execution>
  942. <phase>compile</phase>
  943. <goals>
  944. <goal>check</goal>
  945. </goals>
  946. </execution>
  947. </executions>
  948. </plugin>
  949. <plugin>
  950. <groupId>org.codehaus.mojo</groupId>
  951. <artifactId>cobertura-maven-plugin</artifactId>
  952. <version>${cobertura-maven-plugin.version}</version>
  953. <configuration>
  954. <check>
  955. </check>
  956. <aggregate>true</aggregate>
  957. <outputDirectory>./target/cobertura</outputDirectory>
  958. <encoding>${project.build.sourceEncoding}</encoding>
  959. <quiet>true</quiet>
  960. <format>xml</format>
  961. <instrumentation>
  962. <ignoreTrivial>true</ignoreTrivial>
  963. </instrumentation>
  964. </configuration>
  965. </plugin>
  966. </plugins>
  967. </build>
  968. <modules>
  969. <module>dolphinscheduler-alert</module>
  970. <module>dolphinscheduler-spi</module>
  971. <module>dolphinscheduler-registry</module>
  972. <module>dolphinscheduler-task-plugin</module>
  973. <module>dolphinscheduler-ui</module>
  974. <module>dolphinscheduler-server</module>
  975. <module>dolphinscheduler-common</module>
  976. <module>dolphinscheduler-api</module>
  977. <module>dolphinscheduler-dao</module>
  978. <module>dolphinscheduler-dist</module>
  979. <module>dolphinscheduler-remote</module>
  980. <module>dolphinscheduler-service</module>
  981. <module>dolphinscheduler-microbench</module>
  982. <module>dolphinscheduler-standalone-server</module>
  983. <module>dolphinscheduler-datasource-plugin</module>
  984. <module>dolphinscheduler-python</module>
  985. </modules>
  986. </project>