pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ~ Licensed to the Apache Software Foundation (ASF) under one or more
  3. ~ contributor license agreements. See the NOTICE file distributed with ~
  4. this work for additional information regarding copyright ownership. ~ The
  5. ASF licenses this file to You under the Apache License, Version 2.0 ~ (the
  6. "License"); you may not use this file except in compliance with ~ the License.
  7. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0
  8. ~ ~ Unless required by applicable law or agreed to in writing, software ~
  9. distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT
  10. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the
  11. License for the specific language governing permissions and ~ limitations
  12. under the License. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.apache.dolphinscheduler</groupId>
  19. <artifactId>dolphinscheduler</artifactId>
  20. <version>1.3.4-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>dolphinscheduler-api</artifactId>
  23. <name>${project.artifactId}</name>
  24. <packaging>jar</packaging>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.apache.dolphinscheduler</groupId>
  28. <artifactId>dolphinscheduler-alert</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-dao</artifactId>
  33. </dependency>
  34. <!--springboot -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <artifactId>log4j-to-slf4j</artifactId>
  45. <groupId>org.apache.logging.log4j</groupId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
  49. <!-- use jetty -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-jetty</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.eclipse.jetty.websocket</groupId>
  56. <artifactId>javax-websocket-server-impl</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>org.eclipse.jetty.websocket</groupId>
  60. <artifactId>websocket-server</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-aop</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-context</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-collections</groupId>
  80. <artifactId>commons-collections</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.quartz-scheduler</groupId>
  84. <artifactId>quartz</artifactId>
  85. <exclusions>
  86. <exclusion>
  87. <artifactId>c3p0</artifactId>
  88. <groupId>c3p0</groupId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>com.mchange</groupId>
  92. <artifactId>mchange-commons-java</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.quartz-scheduler</groupId>
  98. <artifactId>quartz-jobs</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger2</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.springfox</groupId>
  106. <artifactId>springfox-swagger-ui</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.dolphinscheduler</groupId>
  110. <artifactId>dolphinscheduler-service</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.xiaoymin</groupId>
  114. <artifactId>swagger-bootstrap-ui</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.curator</groupId>
  118. <artifactId>curator-framework</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.curator</groupId>
  122. <artifactId>curator-recipes</artifactId>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>org.apache.zookeeper</groupId>
  126. <artifactId>zookeeper</artifactId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <!-- hadoop -->
  131. <dependency>
  132. <groupId>org.apache.hadoop</groupId>
  133. <artifactId>hadoop-common</artifactId>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>javax.servlet</groupId>
  137. <artifactId>servlet-api</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.curator</groupId>
  141. <artifactId>curator-client</artifactId>
  142. </exclusion>
  143. </exclusions>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.hadoop</groupId>
  147. <artifactId>hadoop-client</artifactId>
  148. <exclusions>
  149. <exclusion>
  150. <groupId>org.slf4j</groupId>
  151. <artifactId>slf4j-log4j12</artifactId>
  152. </exclusion>
  153. </exclusions>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.hadoop</groupId>
  157. <artifactId>hadoop-hdfs</artifactId>
  158. <exclusions>
  159. <exclusion>
  160. <artifactId>servlet-api</artifactId>
  161. <groupId>javax.servlet</groupId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.hadoop</groupId>
  167. <artifactId>hadoop-yarn-common</artifactId>
  168. <exclusions>
  169. <exclusion>
  170. <artifactId>servlet-api</artifactId>
  171. <groupId>javax.servlet</groupId>
  172. </exclusion>
  173. </exclusions>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.hadoop</groupId>
  177. <artifactId>hadoop-aws</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.mortbay.jetty</groupId>
  181. <artifactId>jsp-2.1</artifactId>
  182. <exclusions>
  183. <exclusion>
  184. <groupId>org.mortbay.jetty</groupId>
  185. <artifactId>servlet-api-2.5</artifactId>
  186. </exclusion>
  187. </exclusions>
  188. </dependency>
  189. <!-- just for test -->
  190. <dependency>
  191. <groupId>org.springframework.boot</groupId>
  192. <artifactId>spring-boot-starter-test</artifactId>
  193. <scope>test</scope>
  194. <exclusions>
  195. <exclusion>
  196. <groupId>org.ow2.asm</groupId>
  197. <artifactId>asm</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot</artifactId>
  202. </exclusion>
  203. <exclusion>
  204. <groupId>org.springframework.boot</groupId>
  205. <artifactId>spring-boot-autoconfigure</artifactId>
  206. </exclusion>
  207. </exclusions>
  208. </dependency>
  209. <dependency>
  210. <groupId>junit</groupId>
  211. <artifactId>junit</artifactId>
  212. <scope>test</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.powermock</groupId>
  216. <artifactId>powermock-module-junit4</artifactId>
  217. <scope>test</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.powermock</groupId>
  221. <artifactId>powermock-api-mockito2</artifactId>
  222. <scope>test</scope>
  223. <exclusions>
  224. <exclusion>
  225. <groupId>org.mockito</groupId>
  226. <artifactId>mockito-core</artifactId>
  227. </exclusion>
  228. </exclusions>
  229. </dependency>
  230. </dependencies>
  231. </project>