pom.xml 37 KB

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