pom.xml 34 KB

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