pom.xml 6.8 KB

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