pom.xml 9.2 KB

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