pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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.2.1-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>com.alibaba</groupId>
  83. <artifactId>fastjson</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-collections</groupId>
  87. <artifactId>commons-collections</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.quartz-scheduler</groupId>
  91. <artifactId>quartz</artifactId>
  92. <exclusions>
  93. <exclusion>
  94. <artifactId>c3p0</artifactId>
  95. <groupId>c3p0</groupId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.quartz-scheduler</groupId>
  101. <artifactId>quartz-jobs</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.springfox</groupId>
  105. <artifactId>springfox-swagger2</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.springfox</groupId>
  109. <artifactId>springfox-swagger-ui</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.dolphinscheduler</groupId>
  113. <artifactId>dolphinscheduler-service</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.github.xiaoymin</groupId>
  117. <artifactId>swagger-bootstrap-ui</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.curator</groupId>
  121. <artifactId>curator-framework</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.curator</groupId>
  125. <artifactId>curator-recipes</artifactId>
  126. <exclusions>
  127. <exclusion>
  128. <groupId>org.apache.zookeeper</groupId>
  129. <artifactId>zookeeper</artifactId>
  130. </exclusion>
  131. </exclusions>
  132. </dependency>
  133. <!-- hadoop -->
  134. <dependency>
  135. <groupId>org.apache.hadoop</groupId>
  136. <artifactId>hadoop-common</artifactId>
  137. <exclusions>
  138. <exclusion>
  139. <groupId>javax.servlet</groupId>
  140. <artifactId>servlet-api</artifactId>
  141. </exclusion>
  142. </exclusions>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.hadoop</groupId>
  146. <artifactId>hadoop-client</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.hadoop</groupId>
  150. <artifactId>hadoop-hdfs</artifactId>
  151. <exclusions>
  152. <exclusion>
  153. <artifactId>servlet-api</artifactId>
  154. <groupId>javax.servlet</groupId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.hadoop</groupId>
  160. <artifactId>hadoop-yarn-common</artifactId>
  161. <exclusions>
  162. <exclusion>
  163. <artifactId>servlet-api</artifactId>
  164. <groupId>javax.servlet</groupId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.hadoop</groupId>
  170. <artifactId>hadoop-aws</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.mortbay.jetty</groupId>
  174. <artifactId>jsp-2.1</artifactId>
  175. <exclusions>
  176. <exclusion>
  177. <groupId>org.mortbay.jetty</groupId>
  178. <artifactId>servlet-api-2.5</artifactId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <!-- just for test -->
  183. <dependency>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-starter-test</artifactId>
  186. <scope>test</scope>
  187. <exclusions>
  188. <exclusion>
  189. <groupId>org.ow2.asm</groupId>
  190. <artifactId>asm</artifactId>
  191. </exclusion>
  192. <exclusion>
  193. <groupId>org.springframework.boot</groupId>
  194. <artifactId>spring-boot</artifactId>
  195. </exclusion>
  196. <exclusion>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-autoconfigure</artifactId>
  199. </exclusion>
  200. </exclusions>
  201. </dependency>
  202. <dependency>
  203. <groupId>junit</groupId>
  204. <artifactId>junit</artifactId>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.powermock</groupId>
  209. <artifactId>powermock-module-junit4</artifactId>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.powermock</groupId>
  214. <artifactId>powermock-api-mockito2</artifactId>
  215. <scope>test</scope>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>org.mockito</groupId>
  219. <artifactId>mockito-core</artifactId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223. </dependencies>
  224. </project>