pom.xml 55 KB

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