pom.xml 12 KB

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