pom.xml 39 KB

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