pom.xml 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  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-storage-api</artifactId>
  225. <version>${project.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.dolphinscheduler</groupId>
  229. <artifactId>dolphinscheduler-storage-all</artifactId>
  230. <version>${project.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.dolphinscheduler</groupId>
  234. <artifactId>dolphinscheduler-extract-base</artifactId>
  235. <version>${project.version}</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.apache.dolphinscheduler</groupId>
  239. <artifactId>dolphinscheduler-extract-master</artifactId>
  240. <version>${project.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.dolphinscheduler</groupId>
  244. <artifactId>dolphinscheduler-extract-worker</artifactId>
  245. <version>${project.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.dolphinscheduler</groupId>
  249. <artifactId>dolphinscheduler-extract-alert</artifactId>
  250. <version>${project.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.dolphinscheduler</groupId>
  254. <artifactId>dolphinscheduler-dao-plugin-all</artifactId>
  255. <version>${project.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.dolphinscheduler</groupId>
  259. <artifactId>dolphinscheduler-dao-api</artifactId>
  260. <version>${project.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.dolphinscheduler</groupId>
  264. <artifactId>dolphinscheduler-dao-h2</artifactId>
  265. <version>${project.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.apache.dolphinscheduler</groupId>
  269. <artifactId>dolphinscheduler-dao-mysql</artifactId>
  270. <version>${project.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.dolphinscheduler</groupId>
  274. <artifactId>dolphinscheduler-dao-postgresql</artifactId>
  275. <version>${project.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.junit</groupId>
  279. <artifactId>junit-bom</artifactId>
  280. <version>${junit.version}</version>
  281. <type>pom</type>
  282. <scope>import</scope>
  283. </dependency>
  284. </dependencies>
  285. </dependencyManagement>
  286. <dependencies>
  287. <!--
  288. NOTE: only development / test phase dependencies (scope = test / provided)
  289. that won't be packaged into final jar can be declared here.
  290. For example: annotation processors, test dependencies that are used by most
  291. of the submodules.
  292. -->
  293. <dependency>
  294. <groupId>org.junit.jupiter</groupId>
  295. <artifactId>junit-jupiter-api</artifactId>
  296. <scope>test</scope>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.junit.vintage</groupId>
  300. <artifactId>junit-vintage-engine</artifactId>
  301. <scope>test</scope>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.mockito</groupId>
  305. <artifactId>mockito-core</artifactId>
  306. <version>${mockito.version}</version>
  307. <scope>test</scope>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.mockito</groupId>
  311. <artifactId>mockito-inline</artifactId>
  312. <version>${mockito.version}</version>
  313. <scope>test</scope>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.mockito</groupId>
  317. <artifactId>mockito-junit-jupiter</artifactId>
  318. <version>${mockito.version}</version>
  319. <scope>test</scope>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.jacoco</groupId>
  323. <artifactId>org.jacoco.agent</artifactId>
  324. <version>${jacoco.version}</version>
  325. <classifier>runtime</classifier>
  326. <scope>test</scope>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.springframework.boot</groupId>
  330. <artifactId>spring-boot-configuration-processor</artifactId>
  331. <version>${spring.boot.version}</version>
  332. <optional>true</optional>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.google.auto.service</groupId>
  336. <artifactId>auto-service</artifactId>
  337. <version>${auto-service.version}</version>
  338. <scope>provided</scope>
  339. </dependency>
  340. <dependency>
  341. <groupId>org.projectlombok</groupId>
  342. <artifactId>lombok</artifactId>
  343. <version>${lombok.version}</version>
  344. <scope>provided</scope>
  345. </dependency>
  346. </dependencies>
  347. <build>
  348. <pluginManagement>
  349. <plugins>
  350. <plugin>
  351. <groupId>org.codehaus.mojo</groupId>
  352. <artifactId>rpm-maven-plugin</artifactId>
  353. <version>${rpm-maven-plugion.version}</version>
  354. <inherited>false</inherited>
  355. </plugin>
  356. <plugin>
  357. <groupId>org.codehaus.mojo</groupId>
  358. <artifactId>aspectj-maven-plugin</artifactId>
  359. <version>${aspectj-maven-plugin.version}</version>
  360. <configuration>
  361. <complianceLevel>${java.version}</complianceLevel>
  362. <source>${java.version}</source>
  363. <target>${java.version}</target>
  364. <showWeaveInfo>true</showWeaveInfo>
  365. <verbose>true</verbose>
  366. <Xlint>ignore</Xlint>
  367. <encoding>UTF-8</encoding>
  368. </configuration>
  369. <executions>
  370. <execution>
  371. <goals>
  372. <goal>compile</goal>
  373. <goal>test-compile</goal>
  374. </goals>
  375. </execution>
  376. </executions>
  377. </plugin>
  378. <plugin>
  379. <groupId>org.apache.maven.plugins</groupId>
  380. <artifactId>maven-compiler-plugin</artifactId>
  381. <version>${maven-compiler-plugin.version}</version>
  382. <configuration>
  383. <source>${java.version}</source>
  384. <target>${java.version}</target>
  385. <testSource>${java.version}</testSource>
  386. <testTarget>${java.version}</testTarget>
  387. </configuration>
  388. </plugin>
  389. <plugin>
  390. <groupId>org.apache.maven.plugins</groupId>
  391. <artifactId>maven-release-plugin</artifactId>
  392. <version>${maven-release-plugin.version}</version>
  393. <configuration>
  394. <tagNameFormat>@{project.version}</tagNameFormat>
  395. </configuration>
  396. </plugin>
  397. <plugin>
  398. <groupId>org.apache.maven.plugins</groupId>
  399. <artifactId>maven-assembly-plugin</artifactId>
  400. <version>${maven-assembly-plugin.version}</version>
  401. </plugin>
  402. <plugin>
  403. <groupId>org.apache.maven.plugins</groupId>
  404. <artifactId>maven-javadoc-plugin</artifactId>
  405. <version>${maven-javadoc-plugin.version}</version>
  406. <configuration>
  407. <source>8</source>
  408. <failOnError>false</failOnError>
  409. </configuration>
  410. </plugin>
  411. <plugin>
  412. <groupId>org.apache.maven.plugins</groupId>
  413. <artifactId>maven-dependency-plugin</artifactId>
  414. <version>${maven-dependency-plugin.version}</version>
  415. </plugin>
  416. <plugin>
  417. <groupId>org.apache.maven.plugins</groupId>
  418. <artifactId>maven-shade-plugin</artifactId>
  419. <version>${maven-shade-plugin.version}</version>
  420. </plugin>
  421. <plugin>
  422. <groupId>org.apache.maven.plugins</groupId>
  423. <artifactId>maven-jar-plugin</artifactId>
  424. <version>${maven-jar-plugin.version}</version>
  425. </plugin>
  426. <plugin>
  427. <groupId>org.codehaus.mojo</groupId>
  428. <artifactId>exec-maven-plugin</artifactId>
  429. <version>${exec-maven-plugin.version}</version>
  430. <executions>
  431. <execution>
  432. <id>docker-build</id>
  433. <goals>
  434. <goal>exec</goal>
  435. </goals>
  436. <phase>package</phase>
  437. <configuration>
  438. <skip>${docker.build.skip}</skip>
  439. <environmentVariables>
  440. <DOCKER_BUILDKIT>1</DOCKER_BUILDKIT>
  441. </environmentVariables>
  442. <executable>docker</executable>
  443. <workingDirectory>${project.basedir}</workingDirectory>
  444. <arguments>
  445. <argument>buildx</argument>
  446. <argument>build</argument>
  447. <argument>--load</argument>
  448. <argument>--no-cache</argument>
  449. <argument>-t</argument>
  450. <argument>${docker.hub}/${docker.repo}:${docker.tag}</argument>
  451. <argument>-t</argument>
  452. <argument>${docker.hub}/${docker.repo}:latest</argument>
  453. <argument>${project.basedir}</argument>
  454. <argument>--file=src/main/docker/Dockerfile</argument>
  455. </arguments>
  456. </configuration>
  457. </execution>
  458. <execution>
  459. <id>docker-push</id>
  460. <goals>
  461. <goal>exec</goal>
  462. </goals>
  463. <phase>deploy</phase>
  464. <configuration>
  465. <skip>${docker.push.skip}</skip>
  466. <environmentVariables>
  467. <DOCKER_BUILDKIT>1</DOCKER_BUILDKIT>
  468. </environmentVariables>
  469. <executable>docker</executable>
  470. <workingDirectory>${project.basedir}</workingDirectory>
  471. <arguments>
  472. <argument>buildx</argument>
  473. <argument>build</argument>
  474. <argument>--platform</argument>
  475. <argument>linux/amd64,linux/arm64</argument>
  476. <argument>--no-cache</argument>
  477. <argument>--push</argument>
  478. <argument>-t</argument>
  479. <argument>${docker.hub}/${docker.repo}:${docker.tag}</argument>
  480. <argument>-t</argument>
  481. <argument>${docker.hub}/${docker.repo}:latest</argument>
  482. <argument>${project.basedir}</argument>
  483. <argument>--file=src/main/docker/Dockerfile</argument>
  484. </arguments>
  485. </configuration>
  486. </execution>
  487. </executions>
  488. </plugin>
  489. <plugin>
  490. <groupId>org.owasp</groupId>
  491. <artifactId>dependency-check-maven</artifactId>
  492. <version>${owasp-dependency-check-maven.version}</version>
  493. <configuration>
  494. <skip>${skipDepCheck}</skip>
  495. <skipProvidedScope>true</skipProvidedScope>
  496. <skipRuntimeScope>true</skipRuntimeScope>
  497. <skipSystemScope>true</skipSystemScope>
  498. <failBuildOnCVSS>7</failBuildOnCVSS>
  499. </configuration>
  500. <executions>
  501. <execution>
  502. <goals>
  503. <goal>aggregate</goal>
  504. </goals>
  505. </execution>
  506. </executions>
  507. </plugin>
  508. </plugins>
  509. </pluginManagement>
  510. <plugins>
  511. <plugin>
  512. <groupId>org.owasp</groupId>
  513. <artifactId>dependency-check-maven</artifactId>
  514. </plugin>
  515. <plugin>
  516. <groupId>org.apache.maven.plugins</groupId>
  517. <artifactId>maven-javadoc-plugin</artifactId>
  518. <version>${maven-javadoc-plugin.version}</version>
  519. <configuration>
  520. <aggregate>true</aggregate>
  521. <charset>${project.build.sourceEncoding}</charset>
  522. <encoding>${project.build.sourceEncoding}</encoding>
  523. <docencoding>${project.build.sourceEncoding}</docencoding>
  524. </configuration>
  525. <executions>
  526. <execution>
  527. <id>attach-javadocs</id>
  528. <goals>
  529. <goal>jar</goal>
  530. </goals>
  531. </execution>
  532. </executions>
  533. </plugin>
  534. <plugin>
  535. <groupId>org.apache.maven.plugins</groupId>
  536. <artifactId>maven-release-plugin</artifactId>
  537. <version>${maven-release-plugin.version}</version>
  538. <configuration>
  539. <autoVersionSubmodules>true</autoVersionSubmodules>
  540. <tagNameFormat>@{project.version}</tagNameFormat>
  541. <tagBase>${project.version}</tagBase>
  542. </configuration>
  543. <dependencies>
  544. <dependency>
  545. <groupId>org.apache.maven.scm</groupId>
  546. <artifactId>maven-scm-provider-jgit</artifactId>
  547. <version>1.9.5</version>
  548. </dependency>
  549. </dependencies>
  550. </plugin>
  551. <plugin>
  552. <groupId>org.apache.maven.plugins</groupId>
  553. <artifactId>maven-compiler-plugin</artifactId>
  554. <version>${maven-compiler-plugin.version}</version>
  555. <configuration>
  556. <source>${java.version}</source>
  557. <target>${java.version}</target>
  558. <encoding>${project.build.sourceEncoding}</encoding>
  559. </configuration>
  560. </plugin>
  561. <plugin>
  562. <groupId>org.apache.maven.plugins</groupId>
  563. <artifactId>maven-surefire-plugin</artifactId>
  564. <version>${maven-surefire-plugin.version}</version>
  565. <configuration>
  566. <skip>${skipUT}</skip>
  567. <excludes>
  568. <exclude>**/*IT.java</exclude>
  569. </excludes>
  570. <systemPropertyVariables>
  571. <jacoco-agent.destfile>${project.build.directory}/jacoco.exec</jacoco-agent.destfile>
  572. </systemPropertyVariables>
  573. </configuration>
  574. </plugin>
  575. <plugin>
  576. <groupId>org.apache.maven.plugins</groupId>
  577. <artifactId>maven-failsafe-plugin</artifactId>
  578. <version>${maven-failsafe-plugin.version}</version>
  579. <configuration>
  580. <skip>${skipIT}</skip>
  581. <additionalClasspathElements>dolphinscheduler-dao/src/main/resources</additionalClasspathElements>
  582. </configuration>
  583. <executions>
  584. <execution>
  585. <goals>
  586. <goal>integration-test</goal>
  587. <goal>verify</goal>
  588. </goals>
  589. </execution>
  590. </executions>
  591. </plugin>
  592. <!-- jenkins plugin jacoco report-->
  593. <plugin>
  594. <groupId>org.jacoco</groupId>
  595. <artifactId>jacoco-maven-plugin</artifactId>
  596. <version>${jacoco.version}</version>
  597. <configuration>
  598. <skip>${jacoco.skip}</skip>
  599. <dataFile>${project.build.directory}/jacoco.exec</dataFile>
  600. </configuration>
  601. <executions>
  602. <execution>
  603. <id>default-instrument</id>
  604. <goals>
  605. <goal>instrument</goal>
  606. </goals>
  607. </execution>
  608. <execution>
  609. <id>default-restore-instrumented-classes</id>
  610. <goals>
  611. <goal>restore-instrumented-classes</goal>
  612. </goals>
  613. <configuration>
  614. <excludes>com/github/dreamhead/moco/*</excludes>
  615. </configuration>
  616. </execution>
  617. <execution>
  618. <id>default-report</id>
  619. <goals>
  620. <goal>report</goal>
  621. </goals>
  622. </execution>
  623. </executions>
  624. </plugin>
  625. <plugin>
  626. <groupId>com.github.spotbugs</groupId>
  627. <artifactId>spotbugs-maven-plugin</artifactId>
  628. <version>${spotbugs.version}</version>
  629. <configuration>
  630. <xmlOutput>true</xmlOutput>
  631. <threshold>medium</threshold>
  632. <effort>default</effort>
  633. <excludeFilterFile>dev-config/spotbugs-exclude.xml</excludeFilterFile>
  634. <failOnError>true</failOnError>
  635. </configuration>
  636. <dependencies>
  637. <dependency>
  638. <groupId>com.github.spotbugs</groupId>
  639. <artifactId>spotbugs</artifactId>
  640. <version>4.0.0-beta4</version>
  641. </dependency>
  642. </dependencies>
  643. </plugin>
  644. <plugin>
  645. <groupId>com.diffplug.spotless</groupId>
  646. <artifactId>spotless-maven-plugin</artifactId>
  647. <version>${spotless.version}</version>
  648. <configuration>
  649. <skip>${spotless.skip}</skip>
  650. <java>
  651. <eclipse>
  652. <file>${maven.multiModuleProjectDirectory}/style/spotless_dolphinscheduler_formatter.xml</file>
  653. </eclipse>
  654. <removeUnusedImports />
  655. <importOrder>
  656. <file>${maven.multiModuleProjectDirectory}/style/eclipse.importorder</file>
  657. </importOrder>
  658. <replaceRegex>
  659. <name>Remove wildcard imports</name>
  660. <searchRegex>import\s+(static)*\s*[^\*\s]+\*;(\r\n|\r|\n)</searchRegex>
  661. <replacement>$1</replacement>
  662. </replaceRegex>
  663. <replaceRegex>
  664. <name>Block powermock</name>
  665. <searchRegex>import\s+org\.powermock\.[^\*\s]*(|\*);(\r\n|\r|\n)</searchRegex>
  666. <replacement>$1</replacement>
  667. </replaceRegex>
  668. <replaceRegex>
  669. <name>Block jUnit4 imports</name>
  670. <searchRegex>import\s+org\.junit\.[^jupiter][^\*\s]*(|\*);(\r\n|\r|\n)</searchRegex>
  671. <replacement>$1</replacement>
  672. </replaceRegex>
  673. <replaceRegex>
  674. <name>Block kubernetes-client</name>
  675. <searchRegex>import\s+io\.kubernetes\.client\.[^\*\s]*(|\*);(\r\n|\r|\n)</searchRegex>
  676. <replacement>$1</replacement>
  677. </replaceRegex>
  678. </java>
  679. <pom>
  680. <sortPom>
  681. <encoding>UTF-8</encoding>
  682. <nrOfIndentSpace>4</nrOfIndentSpace>
  683. <keepBlankLines>true</keepBlankLines>
  684. <indentBlankLines>false</indentBlankLines>
  685. <indentSchemaLocation>true</indentSchemaLocation>
  686. <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement>
  687. <sortModules>false</sortModules>
  688. <sortExecutions>false</sortExecutions>
  689. <predefinedSortOrder>custom_1</predefinedSortOrder>
  690. <expandEmptyElements>false</expandEmptyElements>
  691. <sortProperties>false</sortProperties>
  692. </sortPom>
  693. <replace>
  694. <name>Leading blank line</name>
  695. <search>project</search>
  696. <replacement>project</replacement>
  697. </replace>
  698. </pom>
  699. <markdown>
  700. <includes>
  701. <include>docs/**/*.md</include>
  702. </includes>
  703. <excludes>
  704. <exclude>**/.github/**/*.md</exclude>
  705. </excludes>
  706. <flexmark />
  707. </markdown>
  708. <upToDateChecking>
  709. <enabled>true</enabled>
  710. </upToDateChecking>
  711. </configuration>
  712. <executions>
  713. <execution>
  714. <goals>
  715. <goal>check</goal>
  716. </goals>
  717. <phase>compile</phase>
  718. </execution>
  719. </executions>
  720. </plugin>
  721. <plugin>
  722. <groupId>org.codehaus.mojo</groupId>
  723. <artifactId>cobertura-maven-plugin</artifactId>
  724. <version>${cobertura-maven-plugin.version}</version>
  725. <configuration>
  726. <check />
  727. <aggregate>true</aggregate>
  728. <outputDirectory>./target/cobertura</outputDirectory>
  729. <encoding>${project.build.sourceEncoding}</encoding>
  730. <quiet>true</quiet>
  731. <format>xml</format>
  732. <instrumentation>
  733. <ignoreTrivial>true</ignoreTrivial>
  734. </instrumentation>
  735. </configuration>
  736. </plugin>
  737. <plugin>
  738. <artifactId>maven-source-plugin</artifactId>
  739. <version>${maven-source-plugin.version}</version>
  740. <executions>
  741. <execution>
  742. <id>attach-sources</id>
  743. <goals>
  744. <goal>jar</goal>
  745. </goals>
  746. </execution>
  747. </executions>
  748. </plugin>
  749. <plugin>
  750. <groupId>org.apache.maven.plugins</groupId>
  751. <artifactId>maven-dependency-plugin</artifactId>
  752. <version>${maven-dependency-plugin.version}</version>
  753. <executions>
  754. <execution>
  755. <id>analyze-dependencies</id>
  756. <goals>
  757. <goal>analyze-only</goal>
  758. </goals>
  759. <configuration>
  760. <ignoredDependencies>
  761. <!-- Because of SpringBoot auto-configurations, the configuration is happening outside of your application code, so Maven believes these dependencies to be unused -->
  762. <!-- Static code analysis tools like (maven-dependency-plugin) can not detect runtime dependencies, so you should instruct them about runtime dependencies -->
  763. <!-- https://stackoverflow.com/questions/37528928/spring-boot-core-dependencies-seen-as-unused-by-maven-dependency-plugin -->
  764. <ignoredDependency>org.springframework*:*</ignoredDependency>
  765. <ignoredDependency>org.apache.dolphinscheduler:dolphinscheduler-meter</ignoredDependency>
  766. </ignoredDependencies>
  767. <ignoreNonCompile>true</ignoreNonCompile>
  768. </configuration>
  769. </execution>
  770. </executions>
  771. </plugin>
  772. </plugins>
  773. </build>
  774. <url>https://dolphinscheduler.apache.org</url>
  775. <mailingLists>
  776. <mailingList>
  777. <name>DolphinScheduler Developer List</name>
  778. <subscribe>dev-subscribe@dolphinscheduler.apache.org</subscribe>
  779. <unsubscribe>dev-unsubscribe@dolphinscheduler.apache.org</unsubscribe>
  780. <post>dev@dolphinscheduler.apache.org</post>
  781. </mailingList>
  782. </mailingLists>
  783. <scm>
  784. <connection>scm:git:https://github.com/apache/dolphinscheduler.git</connection>
  785. <developerConnection>scm:git:https://github.com/apache/dolphinscheduler.git</developerConnection>
  786. <url>https://github.com/apache/dolphinscheduler</url>
  787. <tag>HEAD</tag>
  788. </scm>
  789. <profiles>
  790. <profile>
  791. <id>docker</id>
  792. <properties>
  793. <docker.build.skip>false</docker.build.skip>
  794. <docker.push.skip>false</docker.push.skip>
  795. </properties>
  796. </profile>
  797. </profiles>
  798. </project>