pom.xml 13 KB

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