pom.xml 36 KB

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