pom.xml 36 KB

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