pom.xml 55 KB

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