pom.xml 48 KB

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