pom.xml 9.7 KB

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