pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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>dev-SNAPSHOT</version>
  24. </parent>
  25. <artifactId>dolphinscheduler-common</artifactId>
  26. <name>dolphinscheduler-common</name>
  27. <packaging>jar</packaging>
  28. <dependencies>
  29. <!-- dolphinscheduler -->
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-spi</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.dolphinscheduler</groupId>
  36. <artifactId>dolphinscheduler-task-api</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpclient</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.guava</groupId>
  44. <artifactId>guava</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.mockito</groupId>
  48. <artifactId>mockito-core</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-context</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-aop</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fasterxml.jackson.core</groupId>
  61. <artifactId>jackson-databind</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-collections4</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-beanutils</groupId>
  69. <artifactId>commons-beanutils</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.hadoop</groupId>
  77. <artifactId>hadoop-common</artifactId>
  78. <scope>provided</scope>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.slf4j</groupId>
  82. <artifactId>slf4j-log4j12</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>jdk.tools</groupId>
  86. <artifactId>jdk.tools</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <artifactId>servlet-api</artifactId>
  90. <groupId>javax.servlet</groupId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>javax.servlet</groupId>
  94. <artifactId>servlet-api</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>log4j</groupId>
  98. <artifactId>log4j</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>org.apache.curator</groupId>
  102. <artifactId>curator-client</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>commons-configuration</groupId>
  106. <artifactId>commons-configuration</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>io.grpc</groupId>
  110. <artifactId>grpc-protobuf</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>io.netty</groupId>
  114. <artifactId>netty</artifactId>
  115. </exclusion>
  116. <exclusion>
  117. <groupId>org.codehaus.jackson</groupId>
  118. <artifactId>jackson-core-asl</artifactId>
  119. </exclusion>
  120. <exclusion>
  121. <groupId>org.codehaus.jackson</groupId>
  122. <artifactId>jackson-mapper-asl</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <groupId>com.google.protobuf</groupId>
  126. <artifactId>jackson-mapper-asl</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>com.google.code.gson</groupId>
  130. <artifactId>gson</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>xmlenc</groupId>
  134. <artifactId>xmlenc</artifactId>
  135. </exclusion>
  136. <exclusion>
  137. <groupId>commons-net</groupId>
  138. <artifactId>commons-net</artifactId>
  139. </exclusion>
  140. <exclusion>
  141. <groupId>org.apache.avro</groupId>
  142. <artifactId>avro</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>org.apache.zookeeper</groupId>
  146. <artifactId>zookeeper</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <groupId>javax.servlet.jsp</groupId>
  150. <artifactId>jsp-api</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <artifactId>jersey-json</artifactId>
  154. <groupId>com.sun.jersey</groupId>
  155. </exclusion>
  156. <exclusion>
  157. <artifactId>jersey-server</artifactId>
  158. <groupId>com.sun.jersey</groupId>
  159. </exclusion>
  160. <exclusion>
  161. <artifactId>jersey-core</artifactId>
  162. <groupId>com.sun.jersey</groupId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.hadoop</groupId>
  168. <artifactId>hadoop-client</artifactId>
  169. <scope>provided</scope>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>org.slf4j</groupId>
  173. <artifactId>slf4j-log4j12</artifactId>
  174. </exclusion>
  175. <exclusion>
  176. <artifactId>servlet-api</artifactId>
  177. <groupId>javax.servlet</groupId>
  178. </exclusion>
  179. <exclusion>
  180. <groupId>org.codehaus.jackson</groupId>
  181. <artifactId>jackson-jaxrs</artifactId>
  182. </exclusion>
  183. <exclusion>
  184. <groupId>org.codehaus.jackson</groupId>
  185. <artifactId>jackson-xc</artifactId>
  186. </exclusion>
  187. <exclusion>
  188. <groupId>org.fusesource.leveldbjni</groupId>
  189. <artifactId>leveldbjni-all</artifactId>
  190. </exclusion>
  191. <exclusion>
  192. <groupId>org.apache.zookeeper</groupId>
  193. <artifactId>zookeeper</artifactId>
  194. </exclusion>
  195. <exclusion>
  196. <groupId>org.apache.hadoop</groupId>
  197. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <artifactId>jersey-client</artifactId>
  201. <groupId>com.sun.jersey</groupId>
  202. </exclusion>
  203. <exclusion>
  204. <artifactId>jersey-core</artifactId>
  205. <groupId>com.sun.jersey</groupId>
  206. </exclusion>
  207. <exclusion>
  208. <artifactId>jaxb-api</artifactId>
  209. <groupId>javax.xml.bind</groupId>
  210. </exclusion>
  211. <exclusion>
  212. <artifactId>log4j</artifactId>
  213. <groupId>log4j</groupId>
  214. </exclusion>
  215. </exclusions>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.hadoop</groupId>
  219. <artifactId>hadoop-hdfs</artifactId>
  220. <scope>provided</scope>
  221. <exclusions>
  222. <exclusion>
  223. <groupId>javax.servlet</groupId>
  224. <artifactId>servlet-api</artifactId>
  225. </exclusion>
  226. <exclusion>
  227. <groupId>io.netty</groupId>
  228. <artifactId>netty</artifactId>
  229. </exclusion>
  230. <exclusion>
  231. <groupId>com.google.protobuf</groupId>
  232. <artifactId>protobuf-java</artifactId>
  233. </exclusion>
  234. <exclusion>
  235. <groupId>xmlenc</groupId>
  236. <artifactId>xmlenc</artifactId>
  237. </exclusion>
  238. <exclusion>
  239. <groupId>io.netty</groupId>
  240. <artifactId>netty-all</artifactId>
  241. </exclusion>
  242. <exclusion>
  243. <groupId>org.fusesource.leveldbjni</groupId>
  244. <artifactId>leveldbjni-all</artifactId>
  245. </exclusion>
  246. <exclusion>
  247. <artifactId>jersey-core</artifactId>
  248. <groupId>com.sun.jersey</groupId>
  249. </exclusion>
  250. <exclusion>
  251. <artifactId>jersey-server</artifactId>
  252. <groupId>com.sun.jersey</groupId>
  253. </exclusion>
  254. <exclusion>
  255. <artifactId>log4j</artifactId>
  256. <groupId>log4j</groupId>
  257. </exclusion>
  258. </exclusions>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.amazonaws</groupId>
  262. <artifactId>aws-java-sdk-s3</artifactId>
  263. <scope>provided</scope>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.github.oshi</groupId>
  267. <artifactId>oshi-core</artifactId>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.baomidou</groupId>
  271. <artifactId>mybatis-plus-annotation</artifactId>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.github.rholder</groupId>
  275. <artifactId>guava-retrying</artifactId>
  276. </dependency>
  277. <dependency>
  278. <groupId>io.netty</groupId>
  279. <artifactId>netty-all</artifactId>
  280. </dependency>
  281. <dependency>
  282. <artifactId>servlet-api</artifactId>
  283. <groupId>javax.servlet</groupId>
  284. <scope>test</scope>
  285. </dependency>
  286. </dependencies>
  287. </project>