pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler</artifactId>
  24. <version>3.2.2-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-api</artifactId>
  27. <packaging>jar</packaging>
  28. <name>${project.artifactId}</name>
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-bom</artifactId>
  34. <version>${project.version}</version>
  35. <type>pom</type>
  36. <scope>import</scope>
  37. </dependency>
  38. </dependencies>
  39. </dependencyManagement>
  40. <dependencies>
  41. <!-- dolphinscheduler -->
  42. <dependency>
  43. <groupId>org.apache.dolphinscheduler</groupId>
  44. <artifactId>dolphinscheduler-service</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.javassist</groupId>
  48. <artifactId>javassist</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.dolphinscheduler</groupId>
  54. <artifactId>dolphinscheduler-dao</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.dolphinscheduler</groupId>
  58. <artifactId>dolphinscheduler-meter</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.dolphinscheduler</groupId>
  62. <artifactId>dolphinscheduler-datasource-all</artifactId>
  63. <version>${project.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.dolphinscheduler</groupId>
  67. <artifactId>dolphinscheduler-task-all-prune</artifactId>
  68. </dependency>
  69. <!-- <dependency>-->
  70. <!-- <groupId>org.apache.dolphinscheduler</groupId>-->
  71. <!-- <artifactId>dolphinscheduler-ui</artifactId>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>org.apache.dolphinscheduler</groupId>
  75. <artifactId>dolphinscheduler-registry-all</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.dolphinscheduler</groupId>
  79. <artifactId>dolphinscheduler-scheduler-all</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.dolphinscheduler</groupId>
  83. <artifactId>dolphinscheduler-storage-all</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.dolphinscheduler</groupId>
  87. <artifactId>dolphinscheduler-extract-master</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.dolphinscheduler</groupId>
  91. <artifactId>dolphinscheduler-extract-worker</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.codehaus.janino</groupId>
  95. <artifactId>janino</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.amazonaws</groupId>
  99. <artifactId>aws-java-sdk-s3</artifactId>
  100. </dependency>
  101. <!--springboot-->
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-web</artifactId>
  105. <exclusions>
  106. <exclusion>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-tomcat</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>org.apache.logging.log4j</groupId>
  112. <artifactId>log4j-to-slf4j</artifactId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <!-- use jetty -->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-jetty</artifactId>
  120. <exclusions>
  121. <exclusion>
  122. <groupId>org.eclipse.jetty.websocket</groupId>
  123. <artifactId>javax-websocket-server-impl</artifactId>
  124. </exclusion>
  125. <exclusion>
  126. <groupId>org.eclipse.jetty.websocket</groupId>
  127. <artifactId>websocket-server</artifactId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-starter-aop</artifactId>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring-context</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.hibernate.validator</groupId>
  147. <artifactId>hibernate-validator</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>io.fabric8</groupId>
  151. <artifactId>kubernetes-client</artifactId>
  152. </dependency>
  153. <!-- just for test -->
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-test</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.curator</groupId>
  161. <artifactId>curator-test</artifactId>
  162. <scope>test</scope>
  163. <exclusions>
  164. <exclusion>
  165. <groupId>org.javassist</groupId>
  166. <artifactId>javassist</artifactId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <!-- Python API's Gateway server -->
  171. <dependency>
  172. <groupId>net.sf.py4j</groupId>
  173. <artifactId>py4j</artifactId>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.springframework.ldap</groupId>
  177. <artifactId>spring-ldap-core</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework.cloud</groupId>
  181. <artifactId>spring-cloud-starter-kubernetes-client-config</artifactId>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.hbase.thirdparty</groupId>
  185. <artifactId>hbase-noop-htrace</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.h2database</groupId>
  189. <artifactId>h2</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.casbin</groupId>
  194. <artifactId>casdoor-spring-boot-starter</artifactId>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springdoc</groupId>
  198. <artifactId>springdoc-openapi-ui</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.azure.resourcemanager</groupId>
  202. <artifactId>azure-resourcemanager</artifactId>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.azure.resourcemanager</groupId>
  206. <artifactId>azure-resourcemanager-datafactory</artifactId>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.apache.dolphinscheduler</groupId>
  210. <artifactId>dolphinscheduler-extract-alert</artifactId>
  211. </dependency>
  212. </dependencies>
  213. <build>
  214. <testResources>
  215. <testResource>
  216. <directory>${project.basedir}/../dolphinscheduler-dao/src/main/resources</directory>
  217. <includes>
  218. <include>sql/**</include>
  219. </includes>
  220. </testResource>
  221. <testResource>
  222. <directory>${project.basedir}/src/test/resources</directory>
  223. </testResource>
  224. </testResources>
  225. <plugins>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-jar-plugin</artifactId>
  229. <configuration>
  230. <excludes>
  231. <exclude>*.yaml</exclude>
  232. <exclude>*.xml</exclude>
  233. </excludes>
  234. </configuration>
  235. </plugin>
  236. <plugin>
  237. <artifactId>maven-assembly-plugin</artifactId>
  238. <executions>
  239. <execution>
  240. <id>dolphinscheduler-api-server</id>
  241. <goals>
  242. <goal>single</goal>
  243. </goals>
  244. <phase>package</phase>
  245. <configuration>
  246. <finalName>api-server</finalName>
  247. <descriptors>
  248. <descriptor>src/main/assembly/dolphinscheduler-api-server.xml</descriptor>
  249. </descriptors>
  250. <appendAssemblyId>false</appendAssemblyId>
  251. </configuration>
  252. </execution>
  253. </executions>
  254. </plugin>
  255. </plugins>
  256. </build>
  257. <profiles>
  258. <profile>
  259. <id>docker</id>
  260. <build>
  261. <plugins>
  262. <plugin>
  263. <groupId>org.codehaus.mojo</groupId>
  264. <artifactId>exec-maven-plugin</artifactId>
  265. </plugin>
  266. </plugins>
  267. </build>
  268. </profile>
  269. </profiles>
  270. </project>