pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <artifactId>dolphinscheduler</artifactId>
  23. <version>1.3.2-SNAPSHOT</version>
  24. </parent>
  25. <artifactId>dolphinscheduler-api</artifactId>
  26. <name>${project.artifactId}</name>
  27. <packaging>jar</packaging>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-alert</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-dao</artifactId>
  36. </dependency>
  37. <!--springboot-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-tomcat</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <artifactId>log4j-to-slf4j</artifactId>
  48. <groupId>org.apache.logging.log4j</groupId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <!-- use jetty -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-jetty</artifactId>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.eclipse.jetty.websocket</groupId>
  59. <artifactId>javax-websocket-server-impl</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.eclipse.jetty.websocket</groupId>
  63. <artifactId>websocket-server</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-aop</artifactId>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-context</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-collections</groupId>
  83. <artifactId>commons-collections</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.quartz-scheduler</groupId>
  87. <artifactId>quartz</artifactId>
  88. <exclusions>
  89. <exclusion>
  90. <artifactId>c3p0</artifactId>
  91. <groupId>c3p0</groupId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.quartz-scheduler</groupId>
  97. <artifactId>quartz-jobs</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.springfox</groupId>
  101. <artifactId>springfox-swagger2</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger-ui</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.dolphinscheduler</groupId>
  109. <artifactId>dolphinscheduler-service</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.github.xiaoymin</groupId>
  113. <artifactId>swagger-bootstrap-ui</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.curator</groupId>
  117. <artifactId>curator-framework</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.curator</groupId>
  121. <artifactId>curator-recipes</artifactId>
  122. <exclusions>
  123. <exclusion>
  124. <groupId>org.apache.zookeeper</groupId>
  125. <artifactId>zookeeper</artifactId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <!-- hadoop -->
  130. <dependency>
  131. <groupId>org.apache.hadoop</groupId>
  132. <artifactId>hadoop-common</artifactId>
  133. <exclusions>
  134. <exclusion>
  135. <groupId>javax.servlet</groupId>
  136. <artifactId>servlet-api</artifactId>
  137. </exclusion>
  138. </exclusions>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.hadoop</groupId>
  142. <artifactId>hadoop-client</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.hadoop</groupId>
  146. <artifactId>hadoop-hdfs</artifactId>
  147. <exclusions>
  148. <exclusion>
  149. <artifactId>servlet-api</artifactId>
  150. <groupId>javax.servlet</groupId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.hadoop</groupId>
  156. <artifactId>hadoop-yarn-common</artifactId>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>servlet-api</artifactId>
  160. <groupId>javax.servlet</groupId>
  161. </exclusion>
  162. </exclusions>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.hadoop</groupId>
  166. <artifactId>hadoop-aws</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.mortbay.jetty</groupId>
  170. <artifactId>jsp-2.1</artifactId>
  171. <exclusions>
  172. <exclusion>
  173. <groupId>org.mortbay.jetty</groupId>
  174. <artifactId>servlet-api-2.5</artifactId>
  175. </exclusion>
  176. </exclusions>
  177. </dependency>
  178. <!-- just for test -->
  179. <dependency>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-starter-test</artifactId>
  182. <scope>test</scope>
  183. <exclusions>
  184. <exclusion>
  185. <groupId>org.ow2.asm</groupId>
  186. <artifactId>asm</artifactId>
  187. </exclusion>
  188. <exclusion>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot</artifactId>
  191. </exclusion>
  192. <exclusion>
  193. <groupId>org.springframework.boot</groupId>
  194. <artifactId>spring-boot-autoconfigure</artifactId>
  195. </exclusion>
  196. </exclusions>
  197. </dependency>
  198. <dependency>
  199. <groupId>junit</groupId>
  200. <artifactId>junit</artifactId>
  201. <scope>test</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.powermock</groupId>
  205. <artifactId>powermock-module-junit4</artifactId>
  206. <scope>test</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.powermock</groupId>
  210. <artifactId>powermock-api-mockito2</artifactId>
  211. <scope>test</scope>
  212. <exclusions>
  213. <exclusion>
  214. <groupId>org.mockito</groupId>
  215. <artifactId>mockito-core</artifactId>
  216. </exclusion>
  217. </exclusions>
  218. </dependency>
  219. </dependencies>
  220. </project>