pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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-storage-plugin</artifactId>
  24. <version>3.2.2-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-storage-hdfs</artifactId>
  27. <dependencies>
  28. <!-- This is used to load Kerberos Conf -->
  29. <dependency>
  30. <groupId>org.apache.dolphinscheduler</groupId>
  31. <artifactId>dolphinscheduler-datasource-api</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-storage-api</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.hadoop</groupId>
  39. <artifactId>hadoop-common</artifactId>
  40. <scope>provided</scope>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-log4j12</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>jdk.tools</groupId>
  48. <artifactId>jdk.tools</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>servlet-api</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>javax.servlet</groupId>
  56. <artifactId>servlet-api</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>log4j</groupId>
  60. <artifactId>log4j</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>org.apache.curator</groupId>
  64. <artifactId>curator-client</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>commons-configuration</groupId>
  68. <artifactId>commons-configuration</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>io.grpc</groupId>
  72. <artifactId>grpc-protobuf</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <groupId>io.netty</groupId>
  76. <artifactId>netty</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>org.codehaus.jackson</groupId>
  80. <artifactId>jackson-core-asl</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>org.codehaus.jackson</groupId>
  84. <artifactId>jackson-mapper-asl</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>com.google.protobuf</groupId>
  88. <artifactId>jackson-mapper-asl</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>xmlenc</groupId>
  96. <artifactId>xmlenc</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>commons-net</groupId>
  100. <artifactId>commons-net</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.apache.avro</groupId>
  104. <artifactId>avro</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>org.apache.zookeeper</groupId>
  108. <artifactId>zookeeper</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>javax.servlet.jsp</groupId>
  112. <artifactId>jsp-api</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>com.sun.jersey</groupId>
  116. <artifactId>jersey-json</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>com.sun.jersey</groupId>
  120. <artifactId>jersey-server</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>com.sun.jersey</groupId>
  124. <artifactId>jersey-core</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>org.mortbay.jetty</groupId>
  128. <artifactId>jetty</artifactId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.hadoop</groupId>
  134. <artifactId>hadoop-client</artifactId>
  135. <scope>provided</scope>
  136. <exclusions>
  137. <exclusion>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>slf4j-log4j12</artifactId>
  140. </exclusion>
  141. <exclusion>
  142. <groupId>javax.servlet</groupId>
  143. <artifactId>servlet-api</artifactId>
  144. </exclusion>
  145. <exclusion>
  146. <groupId>org.codehaus.jackson</groupId>
  147. <artifactId>jackson-jaxrs</artifactId>
  148. </exclusion>
  149. <exclusion>
  150. <groupId>org.codehaus.jackson</groupId>
  151. <artifactId>jackson-xc</artifactId>
  152. </exclusion>
  153. <exclusion>
  154. <groupId>org.fusesource.leveldbjni</groupId>
  155. <artifactId>leveldbjni-all</artifactId>
  156. </exclusion>
  157. <exclusion>
  158. <groupId>org.apache.zookeeper</groupId>
  159. <artifactId>zookeeper</artifactId>
  160. </exclusion>
  161. <exclusion>
  162. <groupId>org.apache.hadoop</groupId>
  163. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  164. </exclusion>
  165. <exclusion>
  166. <groupId>com.sun.jersey</groupId>
  167. <artifactId>jersey-client</artifactId>
  168. </exclusion>
  169. <exclusion>
  170. <groupId>com.sun.jersey</groupId>
  171. <artifactId>jersey-core</artifactId>
  172. </exclusion>
  173. <exclusion>
  174. <groupId>javax.xml.bind</groupId>
  175. <artifactId>jaxb-api</artifactId>
  176. </exclusion>
  177. <exclusion>
  178. <groupId>log4j</groupId>
  179. <artifactId>log4j</artifactId>
  180. </exclusion>
  181. </exclusions>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.hadoop</groupId>
  185. <artifactId>hadoop-hdfs</artifactId>
  186. <scope>provided</scope>
  187. <exclusions>
  188. <exclusion>
  189. <groupId>javax.servlet</groupId>
  190. <artifactId>servlet-api</artifactId>
  191. </exclusion>
  192. <exclusion>
  193. <groupId>io.netty</groupId>
  194. <artifactId>netty</artifactId>
  195. </exclusion>
  196. <exclusion>
  197. <groupId>com.google.protobuf</groupId>
  198. <artifactId>protobuf-java</artifactId>
  199. </exclusion>
  200. <exclusion>
  201. <groupId>xmlenc</groupId>
  202. <artifactId>xmlenc</artifactId>
  203. </exclusion>
  204. <exclusion>
  205. <groupId>io.netty</groupId>
  206. <artifactId>netty-all</artifactId>
  207. </exclusion>
  208. <exclusion>
  209. <groupId>org.fusesource.leveldbjni</groupId>
  210. <artifactId>leveldbjni-all</artifactId>
  211. </exclusion>
  212. <exclusion>
  213. <groupId>com.sun.jersey</groupId>
  214. <artifactId>jersey-core</artifactId>
  215. </exclusion>
  216. <exclusion>
  217. <groupId>com.sun.jersey</groupId>
  218. <artifactId>jersey-server</artifactId>
  219. </exclusion>
  220. <exclusion>
  221. <groupId>log4j</groupId>
  222. <artifactId>log4j</artifactId>
  223. </exclusion>
  224. </exclusions>
  225. </dependency>
  226. </dependencies>
  227. </project>