pom.xml 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  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. <parent>
  22. <groupId>org.apache</groupId>
  23. <artifactId>apache</artifactId>
  24. <version>25</version>
  25. </parent>
  26. <groupId>org.apache.dolphinscheduler</groupId>
  27. <artifactId>dolphinscheduler</artifactId>
  28. <version>dev-SNAPSHOT</version>
  29. <packaging>pom</packaging>
  30. <name>${project.artifactId}</name>
  31. <description>Dolphin Scheduler is a distributed and easy-to-expand visual DAG workflow scheduling system, dedicated
  32. to solving the complex dependencies in data processing, making the scheduling system out of the box for data
  33. processing.</description>
  34. <modules>
  35. <module>dolphinscheduler-bom</module>
  36. <module>dolphinscheduler-alert</module>
  37. <module>dolphinscheduler-spi</module>
  38. <module>dolphinscheduler-registry</module>
  39. <module>dolphinscheduler-task-plugin</module>
  40. <module>dolphinscheduler-server</module>
  41. <module>dolphinscheduler-common</module>
  42. <module>dolphinscheduler-api</module>
  43. <module>dolphinscheduler-dao</module>
  44. <module>dolphinscheduler-dist</module>
  45. <module>dolphinscheduler-remote</module>
  46. <module>dolphinscheduler-service</module>
  47. <module>dolphinscheduler-microbench</module>
  48. <module>dolphinscheduler-data-quality</module>
  49. <module>dolphinscheduler-standalone-server</module>
  50. <module>dolphinscheduler-datasource-plugin</module>
  51. <module>dolphinscheduler-python</module>
  52. <module>dolphinscheduler-meter</module>
  53. <module>dolphinscheduler-master</module>
  54. <module>dolphinscheduler-worker</module>
  55. <module>dolphinscheduler-log-server</module>
  56. <module>dolphinscheduler-tools</module>
  57. <module>dolphinscheduler-ui</module>
  58. <module>dolphinscheduler-scheduler-plugin</module>
  59. </modules>
  60. <properties>
  61. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  62. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  63. <spring.boot.version>2.5.6</spring.boot.version>
  64. <java.version>1.8</java.version>
  65. <junit.version>4.12</junit.version>
  66. <spotbugs.version>3.1.12</spotbugs.version>
  67. <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
  68. <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
  69. <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
  70. <maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
  71. <maven-source-plugin.version>2.4</maven-source-plugin.version>
  72. <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
  73. <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
  74. <maven-shade-plugin.version>3.2.1</maven-shade-plugin.version>
  75. <rpm-maven-plugion.version>2.2.0</rpm-maven-plugion.version>
  76. <spotless.version>2.23.0</spotless.version>
  77. <jacoco.version>0.8.7</jacoco.version>
  78. <maven.deploy.skip>false</maven.deploy.skip>
  79. <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
  80. <auto-service.version>1.0.1</auto-service.version>
  81. <jacoco.skip>false</jacoco.skip>
  82. <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
  83. <powermock.version>2.0.9</powermock.version>
  84. <exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
  85. <owasp-dependency-check-maven.version>7.0.4</owasp-dependency-check-maven.version>
  86. <lombok.version>1.18.20</lombok.version>
  87. <docker.hub>apache</docker.hub>
  88. <docker.repo>${project.name}</docker.repo>
  89. <docker.tag>${project.version}</docker.tag>
  90. <docker.build.skip>true</docker.build.skip>
  91. <docker.push.skip>true</docker.push.skip>
  92. <python.sign.skip>true</python.sign.skip>
  93. <skipDepCheck>true</skipDepCheck>
  94. </properties>
  95. <dependencyManagement>
  96. <dependencies>
  97. <dependency>
  98. <groupId>org.apache.dolphinscheduler</groupId>
  99. <artifactId>dolphinscheduler-server</artifactId>
  100. <version>${project.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.dolphinscheduler</groupId>
  104. <artifactId>dolphinscheduler-master</artifactId>
  105. <version>${project.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.dolphinscheduler</groupId>
  109. <artifactId>dolphinscheduler-worker</artifactId>
  110. <version>${project.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.dolphinscheduler</groupId>
  114. <artifactId>dolphinscheduler-log-server</artifactId>
  115. <version>${project.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.dolphinscheduler</groupId>
  119. <artifactId>dolphinscheduler-standalone-server</artifactId>
  120. <version>${project.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.dolphinscheduler</groupId>
  124. <artifactId>dolphinscheduler-common</artifactId>
  125. <version>${project.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.dolphinscheduler</groupId>
  129. <artifactId>dolphinscheduler-alert-plugin</artifactId>
  130. <version>${project.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.dolphinscheduler</groupId>
  134. <artifactId>dolphinscheduler-registry-plugin</artifactId>
  135. <version>${project.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.dolphinscheduler</groupId>
  139. <artifactId>dolphinscheduler-registry-all</artifactId>
  140. <version>${project.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.dolphinscheduler</groupId>
  144. <artifactId>dolphinscheduler-dao</artifactId>
  145. <version>${project.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.dolphinscheduler</groupId>
  149. <artifactId>dolphinscheduler-api</artifactId>
  150. <version>${project.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.dolphinscheduler</groupId>
  154. <artifactId>dolphinscheduler-remote</artifactId>
  155. <version>${project.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.dolphinscheduler</groupId>
  159. <artifactId>dolphinscheduler-service</artifactId>
  160. <version>${project.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.dolphinscheduler</groupId>
  164. <artifactId>dolphinscheduler-meter</artifactId>
  165. <version>${project.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.dolphinscheduler</groupId>
  169. <artifactId>dolphinscheduler-spi</artifactId>
  170. <version>${project.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.dolphinscheduler</groupId>
  174. <artifactId>dolphinscheduler-data-quality</artifactId>
  175. <version>${project.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.dolphinscheduler</groupId>
  179. <artifactId>dolphinscheduler-python</artifactId>
  180. <version>${project.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.dolphinscheduler</groupId>
  184. <artifactId>dolphinscheduler-alert-api</artifactId>
  185. <version>${project.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.dolphinscheduler</groupId>
  189. <artifactId>dolphinscheduler-alert-server</artifactId>
  190. <version>${project.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.apache.dolphinscheduler</groupId>
  194. <artifactId>dolphinscheduler-alert-dingtalk</artifactId>
  195. <version>${project.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.dolphinscheduler</groupId>
  199. <artifactId>dolphinscheduler-alert-email</artifactId>
  200. <version>${project.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.dolphinscheduler</groupId>
  204. <artifactId>dolphinscheduler-alert-feishu</artifactId>
  205. <version>${project.version}</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.dolphinscheduler</groupId>
  209. <artifactId>dolphinscheduler-alert-http</artifactId>
  210. <version>${project.version}</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.dolphinscheduler</groupId>
  214. <artifactId>dolphinscheduler-alert-script</artifactId>
  215. <version>${project.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.dolphinscheduler</groupId>
  219. <artifactId>dolphinscheduler-alert-slack</artifactId>
  220. <version>${project.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.dolphinscheduler</groupId>
  224. <artifactId>dolphinscheduler-alert-wechat</artifactId>
  225. <version>${project.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.dolphinscheduler</groupId>
  229. <artifactId>dolphinscheduler-alert-pagerduty</artifactId>
  230. <version>${project.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.dolphinscheduler</groupId>
  234. <artifactId>dolphinscheduler-alert-webexteams</artifactId>
  235. <version>${project.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.dolphinscheduler</groupId>
  239. <artifactId>dolphinscheduler-alert-telegram</artifactId>
  240. <version>${project.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.dolphinscheduler</groupId>
  244. <artifactId>dolphinscheduler-registry-api</artifactId>
  245. <version>${project.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.dolphinscheduler</groupId>
  249. <artifactId>dolphinscheduler-registry-zookeeper</artifactId>
  250. <version>${project.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.dolphinscheduler</groupId>
  254. <artifactId>dolphinscheduler-registry-mysql</artifactId>
  255. <version>${project.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.dolphinscheduler</groupId>
  259. <artifactId>dolphinscheduler-scheduler-api</artifactId>
  260. <version>${project.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.dolphinscheduler</groupId>
  264. <artifactId>dolphinscheduler-scheduler-quartz</artifactId>
  265. <version>${project.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.dolphinscheduler</groupId>
  269. <artifactId>dolphinscheduler-datasource-all</artifactId>
  270. <version>${project.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.dolphinscheduler</groupId>
  274. <artifactId>dolphinscheduler-datasource-api</artifactId>
  275. <version>${project.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.dolphinscheduler</groupId>
  279. <artifactId>dolphinscheduler-task-api</artifactId>
  280. <version>${project.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.apache.dolphinscheduler</groupId>
  284. <artifactId>dolphinscheduler-task-python</artifactId>
  285. <version>${project.version}</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.apache.dolphinscheduler</groupId>
  289. <artifactId>dolphinscheduler-task-all</artifactId>
  290. <version>${project.version}</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.apache.dolphinscheduler</groupId>
  294. <artifactId>dolphinscheduler-ui</artifactId>
  295. <version>${project.version}</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.apache.dolphinscheduler</groupId>
  299. <artifactId>dolphinscheduler-tools</artifactId>
  300. <version>${project.version}</version>
  301. </dependency>
  302. </dependencies>
  303. </dependencyManagement>
  304. <dependencies>
  305. <!--
  306. NOTE: only development / test phase dependencies (scope = test / provided)
  307. that won't be packaged into final jar can be declared here.
  308. For example: annotation processors, test dependencies that are used by most
  309. of the submodules.
  310. -->
  311. <dependency>
  312. <groupId>junit</groupId>
  313. <artifactId>junit</artifactId>
  314. <version>${junit.version}</version>
  315. <scope>test</scope>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.jacoco</groupId>
  319. <artifactId>org.jacoco.agent</artifactId>
  320. <version>${jacoco.version}</version>
  321. <classifier>runtime</classifier>
  322. <scope>test</scope>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.springframework.boot</groupId>
  326. <artifactId>spring-boot-configuration-processor</artifactId>
  327. <version>${spring.boot.version}</version>
  328. <optional>true</optional>
  329. </dependency>
  330. <dependency>
  331. <groupId>com.google.auto.service</groupId>
  332. <artifactId>auto-service</artifactId>
  333. <version>${auto-service.version}</version>
  334. <scope>provided</scope>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.projectlombok</groupId>
  338. <artifactId>lombok</artifactId>
  339. <version>${lombok.version}</version>
  340. <scope>provided</scope>
  341. </dependency>
  342. <dependency>
  343. <groupId>org.powermock</groupId>
  344. <artifactId>powermock-api-mockito2</artifactId>
  345. <version>${powermock.version}</version>
  346. <scope>test</scope>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.powermock</groupId>
  350. <artifactId>powermock-module-junit4</artifactId>
  351. <version>${powermock.version}</version>
  352. <scope>test</scope>
  353. </dependency>
  354. <dependency>
  355. <groupId>org.powermock</groupId>
  356. <artifactId>powermock-core</artifactId>
  357. <version>${powermock.version}</version>
  358. <scope>test</scope>
  359. </dependency>
  360. </dependencies>
  361. <build>
  362. <pluginManagement>
  363. <plugins>
  364. <plugin>
  365. <groupId>org.codehaus.mojo</groupId>
  366. <artifactId>rpm-maven-plugin</artifactId>
  367. <version>${rpm-maven-plugion.version}</version>
  368. <inherited>false</inherited>
  369. </plugin>
  370. <plugin>
  371. <groupId>org.apache.maven.plugins</groupId>
  372. <artifactId>maven-compiler-plugin</artifactId>
  373. <version>${maven-compiler-plugin.version}</version>
  374. <configuration>
  375. <source>${java.version}</source>
  376. <target>${java.version}</target>
  377. <testSource>${java.version}</testSource>
  378. <testTarget>${java.version}</testTarget>
  379. </configuration>
  380. </plugin>
  381. <plugin>
  382. <groupId>org.apache.maven.plugins</groupId>
  383. <artifactId>maven-release-plugin</artifactId>
  384. <version>${maven-release-plugin.version}</version>
  385. <configuration>
  386. <tagNameFormat>@{project.version}</tagNameFormat>
  387. </configuration>
  388. </plugin>
  389. <plugin>
  390. <groupId>org.apache.maven.plugins</groupId>
  391. <artifactId>maven-assembly-plugin</artifactId>
  392. <version>${maven-assembly-plugin.version}</version>
  393. </plugin>
  394. <plugin>
  395. <groupId>org.apache.maven.plugins</groupId>
  396. <artifactId>maven-javadoc-plugin</artifactId>
  397. <version>${maven-javadoc-plugin.version}</version>
  398. <configuration>
  399. <source>8</source>
  400. <failOnError>false</failOnError>
  401. </configuration>
  402. </plugin>
  403. <plugin>
  404. <groupId>org.apache.maven.plugins</groupId>
  405. <artifactId>maven-dependency-plugin</artifactId>
  406. <version>${maven-dependency-plugin.version}</version>
  407. </plugin>
  408. <plugin>
  409. <groupId>org.apache.maven.plugins</groupId>
  410. <artifactId>maven-shade-plugin</artifactId>
  411. <version>${maven-shade-plugin.version}</version>
  412. </plugin>
  413. <plugin>
  414. <groupId>org.apache.maven.plugins</groupId>
  415. <artifactId>maven-jar-plugin</artifactId>
  416. <version>${maven-jar-plugin.version}</version>
  417. </plugin>
  418. <plugin>
  419. <groupId>org.codehaus.mojo</groupId>
  420. <artifactId>exec-maven-plugin</artifactId>
  421. <version>${exec-maven-plugin.version}</version>
  422. <executions>
  423. <execution>
  424. <id>docker-build</id>
  425. <goals>
  426. <goal>exec</goal>
  427. </goals>
  428. <phase>package</phase>
  429. <configuration>
  430. <skip>${docker.build.skip}</skip>
  431. <executable>docker</executable>
  432. <workingDirectory>${project.basedir}</workingDirectory>
  433. <arguments>
  434. <argument>build</argument>
  435. <argument>--no-cache</argument>
  436. <argument>-t</argument>
  437. <argument>${docker.hub}/${docker.repo}:${docker.tag}</argument>
  438. <argument>-t</argument>
  439. <argument>${docker.hub}/${docker.repo}:latest</argument>
  440. <argument>${project.basedir}</argument>
  441. <argument>--file=src/main/docker/Dockerfile</argument>
  442. </arguments>
  443. </configuration>
  444. </execution>
  445. <execution>
  446. <id>docker-push</id>
  447. <goals>
  448. <goal>exec</goal>
  449. </goals>
  450. <phase>deploy</phase>
  451. <configuration>
  452. <skip>${docker.push.skip}</skip>
  453. <environmentVariables>
  454. <DOCKER_BUILDKIT>1</DOCKER_BUILDKIT>
  455. </environmentVariables>
  456. <executable>docker</executable>
  457. <workingDirectory>${project.basedir}</workingDirectory>
  458. <arguments>
  459. <argument>buildx</argument>
  460. <argument>build</argument>
  461. <argument>--platform</argument>
  462. <argument>linux/amd64,linux/arm64</argument>
  463. <argument>--no-cache</argument>
  464. <argument>--push</argument>
  465. <argument>-t</argument>
  466. <argument>${docker.hub}/${docker.repo}:${docker.tag}</argument>
  467. <argument>-t</argument>
  468. <argument>${docker.hub}/${docker.repo}:latest</argument>
  469. <argument>${project.basedir}</argument>
  470. <argument>--file=src/main/docker/Dockerfile</argument>
  471. </arguments>
  472. </configuration>
  473. </execution>
  474. </executions>
  475. </plugin>
  476. <plugin>
  477. <groupId>org.owasp</groupId>
  478. <artifactId>dependency-check-maven</artifactId>
  479. <version>${owasp-dependency-check-maven.version}</version>
  480. <configuration>
  481. <skip>${skipDepCheck}</skip>
  482. <skipProvidedScope>true</skipProvidedScope>
  483. <skipRuntimeScope>true</skipRuntimeScope>
  484. <skipSystemScope>true</skipSystemScope>
  485. <failBuildOnCVSS>7</failBuildOnCVSS>
  486. </configuration>
  487. <executions>
  488. <execution>
  489. <goals>
  490. <goal>aggregate</goal>
  491. </goals>
  492. </execution>
  493. </executions>
  494. </plugin>
  495. </plugins>
  496. </pluginManagement>
  497. <plugins>
  498. <plugin>
  499. <groupId>org.owasp</groupId>
  500. <artifactId>dependency-check-maven</artifactId>
  501. </plugin>
  502. <plugin>
  503. <groupId>org.apache.maven.plugins</groupId>
  504. <artifactId>maven-javadoc-plugin</artifactId>
  505. <version>${maven-javadoc-plugin.version}</version>
  506. <configuration>
  507. <aggregate>true</aggregate>
  508. <charset>${project.build.sourceEncoding}</charset>
  509. <encoding>${project.build.sourceEncoding}</encoding>
  510. <docencoding>${project.build.sourceEncoding}</docencoding>
  511. </configuration>
  512. <executions>
  513. <execution>
  514. <id>attach-javadocs</id>
  515. <goals>
  516. <goal>jar</goal>
  517. </goals>
  518. </execution>
  519. </executions>
  520. </plugin>
  521. <plugin>
  522. <groupId>org.apache.maven.plugins</groupId>
  523. <artifactId>maven-release-plugin</artifactId>
  524. <version>${maven-release-plugin.version}</version>
  525. <configuration>
  526. <autoVersionSubmodules>true</autoVersionSubmodules>
  527. <tagNameFormat>@{project.version}</tagNameFormat>
  528. <tagBase>${project.version}</tagBase>
  529. </configuration>
  530. <dependencies>
  531. <dependency>
  532. <groupId>org.apache.maven.scm</groupId>
  533. <artifactId>maven-scm-provider-jgit</artifactId>
  534. <version>1.9.5</version>
  535. </dependency>
  536. </dependencies>
  537. </plugin>
  538. <plugin>
  539. <groupId>org.apache.maven.plugins</groupId>
  540. <artifactId>maven-compiler-plugin</artifactId>
  541. <version>${maven-compiler-plugin.version}</version>
  542. <configuration>
  543. <source>${java.version}</source>
  544. <target>${java.version}</target>
  545. <encoding>${project.build.sourceEncoding}</encoding>
  546. <skip>false</skip>
  547. <!--not skip compile test classes-->
  548. </configuration>
  549. </plugin>
  550. <plugin>
  551. <groupId>org.apache.maven.plugins</groupId>
  552. <artifactId>maven-surefire-plugin</artifactId>
  553. <version>${maven-surefire-plugin.version}</version>
  554. <configuration>
  555. <systemPropertyVariables>
  556. <jacoco-agent.destfile>${project.build.directory}/jacoco.exec</jacoco-agent.destfile>
  557. </systemPropertyVariables>
  558. </configuration>
  559. <dependencies>
  560. <dependency>
  561. <groupId>org.apache.maven.surefire</groupId>
  562. <artifactId>surefire-junit4</artifactId>
  563. <version>${maven-surefire-plugin.version}</version>
  564. </dependency>
  565. </dependencies>
  566. </plugin>
  567. <!-- jenkins plugin jacoco report-->
  568. <plugin>
  569. <groupId>org.jacoco</groupId>
  570. <artifactId>jacoco-maven-plugin</artifactId>
  571. <version>${jacoco.version}</version>
  572. <configuration>
  573. <skip>${jacoco.skip}</skip>
  574. <dataFile>${project.build.directory}/jacoco.exec</dataFile>
  575. </configuration>
  576. <executions>
  577. <execution>
  578. <id>default-instrument</id>
  579. <goals>
  580. <goal>instrument</goal>
  581. </goals>
  582. </execution>
  583. <execution>
  584. <id>default-restore-instrumented-classes</id>
  585. <goals>
  586. <goal>restore-instrumented-classes</goal>
  587. </goals>
  588. <configuration>
  589. <excludes>com/github/dreamhead/moco/*</excludes>
  590. </configuration>
  591. </execution>
  592. <execution>
  593. <id>default-report</id>
  594. <goals>
  595. <goal>report</goal>
  596. </goals>
  597. </execution>
  598. </executions>
  599. </plugin>
  600. <plugin>
  601. <groupId>com.github.spotbugs</groupId>
  602. <artifactId>spotbugs-maven-plugin</artifactId>
  603. <version>${spotbugs.version}</version>
  604. <configuration>
  605. <xmlOutput>true</xmlOutput>
  606. <threshold>medium</threshold>
  607. <effort>default</effort>
  608. <excludeFilterFile>dev-config/spotbugs-exclude.xml</excludeFilterFile>
  609. <failOnError>true</failOnError>
  610. </configuration>
  611. <dependencies>
  612. <dependency>
  613. <groupId>com.github.spotbugs</groupId>
  614. <artifactId>spotbugs</artifactId>
  615. <version>4.0.0-beta4</version>
  616. </dependency>
  617. </dependencies>
  618. </plugin>
  619. <plugin>
  620. <groupId>com.diffplug.spotless</groupId>
  621. <artifactId>spotless-maven-plugin</artifactId>
  622. <version>${spotless.version}</version>
  623. <configuration>
  624. <!-- optional: limit format enforcement to just the files changed by this feature branch -->
  625. <ratchetFrom>HEAD</ratchetFrom>
  626. <java>
  627. <eclipse>
  628. <file>style/spotless_dolphinscheduler_formatter.xml</file>
  629. </eclipse>
  630. <removeUnusedImports />
  631. <importOrder>
  632. <file>style/eclipse.importorder</file>
  633. </importOrder>
  634. <replaceRegex>
  635. <name>Remove wildcard imports</name>
  636. <searchRegex>import\s+[^\*\s]+\*;(\r\n|\r|\n)</searchRegex>
  637. <replacement>$1</replacement>
  638. </replaceRegex>
  639. </java>
  640. <pom>
  641. <sortPom>
  642. <encoding>UTF-8</encoding>
  643. <nrOfIndentSpace>4</nrOfIndentSpace>
  644. <keepBlankLines>true</keepBlankLines>
  645. <indentBlankLines>false</indentBlankLines>
  646. <indentSchemaLocation>true</indentSchemaLocation>
  647. <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
  648. <sortModules>false</sortModules>
  649. <sortExecutions>false</sortExecutions>
  650. <predefinedSortOrder>custom_1</predefinedSortOrder>
  651. <expandEmptyElements>false</expandEmptyElements>
  652. <sortProperties>false</sortProperties>
  653. </sortPom>
  654. <replace>
  655. <name>Leading blank line</name>
  656. <search>project</search>
  657. <replacement>project</replacement>
  658. </replace>
  659. </pom>
  660. </configuration>
  661. <executions>
  662. <execution>
  663. <goals>
  664. <goal>check</goal>
  665. </goals>
  666. <phase>compile</phase>
  667. </execution>
  668. </executions>
  669. </plugin>
  670. <plugin>
  671. <groupId>org.codehaus.mojo</groupId>
  672. <artifactId>cobertura-maven-plugin</artifactId>
  673. <version>${cobertura-maven-plugin.version}</version>
  674. <configuration>
  675. <check />
  676. <aggregate>true</aggregate>
  677. <outputDirectory>./target/cobertura</outputDirectory>
  678. <encoding>${project.build.sourceEncoding}</encoding>
  679. <quiet>true</quiet>
  680. <format>xml</format>
  681. <instrumentation>
  682. <ignoreTrivial>true</ignoreTrivial>
  683. </instrumentation>
  684. </configuration>
  685. </plugin>
  686. <plugin>
  687. <artifactId>maven-source-plugin</artifactId>
  688. <version>${maven-source-plugin.version}</version>
  689. <executions>
  690. <execution>
  691. <id>attach-sources</id>
  692. <goals>
  693. <goal>jar</goal>
  694. </goals>
  695. </execution>
  696. </executions>
  697. </plugin>
  698. <plugin>
  699. <groupId>org.apache.maven.plugins</groupId>
  700. <artifactId>maven-dependency-plugin</artifactId>
  701. <version>${maven-dependency-plugin.version}</version>
  702. <executions>
  703. <execution>
  704. <id>analyze-dependencies</id>
  705. <goals>
  706. <goal>analyze-only</goal>
  707. </goals>
  708. <configuration>
  709. <ignoredDependencies>
  710. <!-- Because of SpringBoot auto-configurations, the configuration is happening outside of your application code, so Maven believes these dependencies to be unused -->
  711. <!-- Static code analysis tools like (maven-dependency-plugin) can not detect runtime dependencies, so you should instruct them about runtime dependencies -->
  712. <!-- https://stackoverflow.com/questions/37528928/spring-boot-core-dependencies-seen-as-unused-by-maven-dependency-plugin -->
  713. <ignoredDependency>org.springframework*:*</ignoredDependency>
  714. <ignoredDependency>org.apache.dolphinscheduler:dolphinscheduler-meter</ignoredDependency>
  715. </ignoredDependencies>
  716. <ignoreNonCompile>true</ignoreNonCompile>
  717. </configuration>
  718. </execution>
  719. </executions>
  720. </plugin>
  721. </plugins>
  722. </build>
  723. <url>https://dolphinscheduler.apache.org</url>
  724. <mailingLists>
  725. <mailingList>
  726. <name>DolphinScheduler Developer List</name>
  727. <subscribe>dev-subscribe@dolphinscheduler.apache.org</subscribe>
  728. <unsubscribe>dev-unsubscribe@dolphinscheduler.apache.org</unsubscribe>
  729. <post>dev@dolphinscheduler.apache.org</post>
  730. </mailingList>
  731. </mailingLists>
  732. <scm>
  733. <connection>scm:git:https://github.com/apache/dolphinscheduler.git</connection>
  734. <developerConnection>scm:git:https://github.com/apache/dolphinscheduler.git</developerConnection>
  735. <url>https://github.com/apache/dolphinscheduler</url>
  736. <tag>HEAD</tag>
  737. </scm>
  738. <profiles>
  739. <profile>
  740. <id>docker</id>
  741. <properties>
  742. <docker.build.skip>false</docker.build.skip>
  743. <docker.push.skip>false</docker.push.skip>
  744. </properties>
  745. </profile>
  746. </profiles>
  747. </project>