pom.xml 8.2 KB

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