pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  14. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  15. <modelVersion>4.0.0</modelVersion>
  16. <parent>
  17. <groupId>org.apache.hadoop</groupId>
  18. <artifactId>hadoop-project-dist</artifactId>
  19. <version>2.10.1</version>
  20. <relativePath>../hadoop-project-dist</relativePath>
  21. </parent>
  22. <groupId>org.apache.hadoop</groupId>
  23. <artifactId>hadoop-client</artifactId>
  24. <version>2.10.1</version>
  25. <packaging>jar</packaging>
  26. <description>Apache Hadoop Client</description>
  27. <name>Apache Hadoop Client</name>
  28. <properties>
  29. <hadoop.component>client</hadoop.component>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.apache.hadoop</groupId>
  34. <artifactId>hadoop-common</artifactId>
  35. <scope>compile</scope>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>servlet-api</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>commons-logging</groupId>
  43. <artifactId>commons-logging-api</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>jetty</groupId>
  47. <artifactId>org.mortbay.jetty</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.mortbay.jetty</groupId>
  51. <artifactId>jetty</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>org.mortbay.jetty</groupId>
  55. <artifactId>jetty-util</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>org.mortbay.jetty</groupId>
  59. <artifactId>servlet-api-2.5</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>com.sun.jersey</groupId>
  63. <artifactId>jersey-core</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>com.sun.jersey</groupId>
  67. <artifactId>jersey-json</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>com.sun.jersey</groupId>
  71. <artifactId>jersey-server</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>org.eclipse.jdt</groupId>
  75. <artifactId>core</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.apache.avro</groupId>
  79. <artifactId>avro-ipc</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>net.sf.kosmosfs</groupId>
  83. <artifactId>kfs</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>net.java.dev.jets3t</groupId>
  87. <artifactId>jets3t</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>com.jcraft</groupId>
  91. <artifactId>jsch</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.hadoop</groupId>
  97. <artifactId>hadoop-hdfs-client</artifactId>
  98. <scope>compile</scope>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.apache.avro</groupId>
  102. <artifactId>avro</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>org.mortbay.jetty</groupId>
  106. <artifactId>jetty</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>com.sun.jersey</groupId>
  110. <artifactId>jersey-core</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>com.sun.jersey</groupId>
  114. <artifactId>jersey-server</artifactId>
  115. </exclusion>
  116. <exclusion>
  117. <groupId>javax.servlet</groupId>
  118. <artifactId>servlet-api</artifactId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.hadoop</groupId>
  124. <artifactId>hadoop-mapreduce-client-app</artifactId>
  125. <scope>compile</scope>
  126. <exclusions>
  127. <exclusion>
  128. <groupId>javax.servlet</groupId>
  129. <artifactId>servlet-api</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>org.apache.hadoop</groupId>
  133. <artifactId>hadoop-yarn-server-nodemanager</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>org.apache.hadoop</groupId>
  137. <artifactId>hadoop-yarn-server-web-proxy</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.hadoop</groupId>
  141. <artifactId>hadoop-annotations</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>com.google.inject.extensions</groupId>
  145. <artifactId>guice-servlet</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>junit</groupId>
  149. <artifactId>junit</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>org.apache.avro</groupId>
  153. <artifactId>avro</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>jline</groupId>
  157. <artifactId>jline</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>io.netty</groupId>
  161. <artifactId>netty</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.hadoop</groupId>
  167. <artifactId>hadoop-yarn-api</artifactId>
  168. <scope>compile</scope>
  169. <exclusions>
  170. <exclusion>
  171. <groupId>org.apache.hadoop</groupId>
  172. <artifactId>hadoop-annotations</artifactId>
  173. </exclusion>
  174. <exclusion>
  175. <groupId>com.google.inject</groupId>
  176. <artifactId>guice</artifactId>
  177. </exclusion>
  178. <exclusion>
  179. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  180. <artifactId>jersey-test-framework-grizzly2</artifactId>
  181. </exclusion>
  182. <exclusion>
  183. <groupId>com.sun.jersey</groupId>
  184. <artifactId>jersey-server</artifactId>
  185. </exclusion>
  186. <exclusion>
  187. <groupId>com.sun.jersey.contribs</groupId>
  188. <artifactId>jersey-guice</artifactId>
  189. </exclusion>
  190. <exclusion>
  191. <groupId>com.google.inject.extensions</groupId>
  192. <artifactId>guice-servlet</artifactId>
  193. </exclusion>
  194. <exclusion>
  195. <groupId>org.apache.avro</groupId>
  196. <artifactId>avro</artifactId>
  197. </exclusion>
  198. <exclusion>
  199. <groupId>com.sun.jersey</groupId>
  200. <artifactId>jersey-core</artifactId>
  201. </exclusion>
  202. <exclusion>
  203. <groupId>com.sun.jersey</groupId>
  204. <artifactId>jersey-json</artifactId>
  205. </exclusion>
  206. <exclusion>
  207. <groupId>io.netty</groupId>
  208. <artifactId>netty</artifactId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.hadoop</groupId>
  214. <artifactId>hadoop-mapreduce-client-core</artifactId>
  215. <scope>compile</scope>
  216. <exclusions>
  217. <exclusion>
  218. <groupId>junit</groupId>
  219. <artifactId>junit</artifactId>
  220. </exclusion>
  221. <exclusion>
  222. <groupId>com.google.inject</groupId>
  223. <artifactId>guice</artifactId>
  224. </exclusion>
  225. <exclusion>
  226. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  227. <artifactId>jersey-test-framework-grizzly2</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>com.sun.jersey</groupId>
  231. <artifactId>jersey-server</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>com.sun.jersey.contribs</groupId>
  235. <artifactId>jersey-guice</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <groupId>org.apache.avro</groupId>
  239. <artifactId>avro</artifactId>
  240. </exclusion>
  241. <exclusion>
  242. <groupId>org.apache.hadoop</groupId>
  243. <artifactId>hadoop-annotations</artifactId>
  244. </exclusion>
  245. <exclusion>
  246. <groupId>com.google.inject.extensions</groupId>
  247. <artifactId>guice-servlet</artifactId>
  248. </exclusion>
  249. <exclusion>
  250. <groupId>com.sun.jersey</groupId>
  251. <artifactId>jersey-json</artifactId>
  252. </exclusion>
  253. <exclusion>
  254. <groupId>io.netty</groupId>
  255. <artifactId>netty</artifactId>
  256. </exclusion>
  257. </exclusions>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.apache.hadoop</groupId>
  261. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  262. <scope>compile</scope>
  263. <exclusions>
  264. <exclusion>
  265. <groupId>junit</groupId>
  266. <artifactId>junit</artifactId>
  267. </exclusion>
  268. <exclusion>
  269. <groupId>org.apache.avro</groupId>
  270. <artifactId>avro</artifactId>
  271. </exclusion>
  272. <exclusion>
  273. <groupId>org.apache.hadoop</groupId>
  274. <artifactId>hadoop-annotations</artifactId>
  275. </exclusion>
  276. <exclusion>
  277. <groupId>com.google.inject.extensions</groupId>
  278. <artifactId>guice-servlet</artifactId>
  279. </exclusion>
  280. <exclusion>
  281. <groupId>io.netty</groupId>
  282. <artifactId>netty</artifactId>
  283. </exclusion>
  284. </exclusions>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.apache.hadoop</groupId>
  288. <artifactId>hadoop-annotations</artifactId>
  289. <scope>compile</scope>
  290. <exclusions>
  291. <exclusion>
  292. <groupId>jdk.tools</groupId>
  293. <artifactId>jdk.tools</artifactId>
  294. </exclusion>
  295. </exclusions>
  296. </dependency>
  297. </dependencies>
  298. </project>