pom.xml 34 KB

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