pom.xml 8.9 KB

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