pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 http://maven.apache.org/maven-v4_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>3.0.0-SNAPSHOT</version>
  20. <relativePath>../hadoop-project-dist</relativePath>
  21. </parent>
  22. <groupId>org.apache.hadoop</groupId>
  23. <artifactId>hadoop-client</artifactId>
  24. <version>3.0.0-SNAPSHOT</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>commons-httpclient</groupId>
  39. <artifactId>commons-httpclient</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>tomcat</groupId>
  43. <artifactId>jasper-compiler</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>tomcat</groupId>
  47. <artifactId>jasper-runtime</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>servlet-api</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>javax.servlet.jsp</groupId>
  55. <artifactId>jsp-api</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>commons-logging</groupId>
  59. <artifactId>commons-logging-api</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>jetty</groupId>
  63. <artifactId>org.mortbay.jetty</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>org.mortbay.jetty</groupId>
  67. <artifactId>jetty</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>org.mortbay.jetty</groupId>
  71. <artifactId>jetty-util</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>org.mortbay.jetty</groupId>
  75. <artifactId>jsp-api-2.1</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>org.mortbay.jetty</groupId>
  79. <artifactId>servlet-api-2.5</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>com.sun.jersey</groupId>
  83. <artifactId>jersey-core</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>com.sun.jersey</groupId>
  87. <artifactId>jersey-json</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>com.sun.jersey</groupId>
  91. <artifactId>jersey-server</artifactId>
  92. </exclusion>
  93. <exclusion>
  94. <groupId>org.eclipse.jdt</groupId>
  95. <artifactId>core</artifactId>
  96. </exclusion>
  97. <exclusion>
  98. <groupId>org.aspectj</groupId>
  99. <artifactId>aspectjrt</artifactId>
  100. </exclusion>
  101. <exclusion>
  102. <groupId>org.apache.avro</groupId>
  103. <artifactId>avro-ipc</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>net.sf.kosmosfs</groupId>
  107. <artifactId>kfs</artifactId>
  108. </exclusion>
  109. <exclusion>
  110. <groupId>net.java.dev.jets3t</groupId>
  111. <artifactId>jets3t</artifactId>
  112. </exclusion>
  113. <exclusion>
  114. <groupId>com.jcraft</groupId>
  115. <artifactId>jsch</artifactId>
  116. </exclusion>
  117. <exclusion>
  118. <groupId>commons-el</groupId>
  119. <artifactId>commons-el</artifactId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.hadoop</groupId>
  125. <artifactId>hadoop-hdfs</artifactId>
  126. <scope>compile</scope>
  127. <exclusions>
  128. <exclusion>
  129. <groupId>commons-daemon</groupId>
  130. <artifactId>commons-daemon</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>org.apache.avro</groupId>
  134. <artifactId>avro</artifactId>
  135. </exclusion>
  136. <exclusion>
  137. <groupId>org.mortbay.jetty</groupId>
  138. <artifactId>jetty</artifactId>
  139. </exclusion>
  140. <exclusion>
  141. <groupId>org.mortbay.jetty</groupId>
  142. <artifactId>jetty-util</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>com.sun.jersey</groupId>
  146. <artifactId>jersey-core</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <groupId>com.sun.jersey</groupId>
  150. <artifactId>jersey-server</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <groupId>javax.servlet</groupId>
  154. <artifactId>servlet-api</artifactId>
  155. </exclusion>
  156. <exclusion>
  157. <groupId>javax.servlet.jsp</groupId>
  158. <artifactId>jsp-api</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>tomcat</groupId>
  162. <artifactId>jasper-runtime</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.hadoop</groupId>
  168. <artifactId>hadoop-mapreduce-client-app</artifactId>
  169. <scope>compile</scope>
  170. <exclusions>
  171. <exclusion>
  172. <groupId>javax.servlet</groupId>
  173. <artifactId>servlet-api</artifactId>
  174. </exclusion>
  175. <exclusion>
  176. <groupId>org.apache.hadoop</groupId>
  177. <artifactId>hadoop-yarn-server-nodemanager</artifactId>
  178. </exclusion>
  179. <exclusion>
  180. <groupId>org.apache.hadoop</groupId>
  181. <artifactId>hadoop-yarn-server-web-proxy</artifactId>
  182. </exclusion>
  183. <exclusion>
  184. <groupId>org.apache.hadoop</groupId>
  185. <artifactId>hadoop-annotations</artifactId>
  186. </exclusion>
  187. <exclusion>
  188. <groupId>com.google.inject.extensions</groupId>
  189. <artifactId>guice-servlet</artifactId>
  190. </exclusion>
  191. <exclusion>
  192. <groupId>junit</groupId>
  193. <artifactId>junit</artifactId>
  194. </exclusion>
  195. <exclusion>
  196. <groupId>org.apache.avro</groupId>
  197. <artifactId>avro</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <groupId>jline</groupId>
  201. <artifactId>jline</artifactId>
  202. </exclusion>
  203. <exclusion>
  204. <groupId>io.netty</groupId>
  205. <artifactId>netty</artifactId>
  206. </exclusion>
  207. </exclusions>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.hadoop</groupId>
  211. <artifactId>hadoop-yarn-api</artifactId>
  212. <scope>compile</scope>
  213. <exclusions>
  214. <exclusion>
  215. <groupId>org.apache.hadoop</groupId>
  216. <artifactId>hadoop-annotations</artifactId>
  217. </exclusion>
  218. <exclusion>
  219. <groupId>com.google.inject</groupId>
  220. <artifactId>guice</artifactId>
  221. </exclusion>
  222. <exclusion>
  223. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  224. <artifactId>jersey-test-framework-grizzly2</artifactId>
  225. </exclusion>
  226. <exclusion>
  227. <groupId>com.sun.jersey</groupId>
  228. <artifactId>jersey-server</artifactId>
  229. </exclusion>
  230. <exclusion>
  231. <groupId>com.sun.jersey.contribs</groupId>
  232. <artifactId>jersey-guice</artifactId>
  233. </exclusion>
  234. <exclusion>
  235. <groupId>com.google.inject.extensions</groupId>
  236. <artifactId>guice-servlet</artifactId>
  237. </exclusion>
  238. <exclusion>
  239. <groupId>org.apache.avro</groupId>
  240. <artifactId>avro</artifactId>
  241. </exclusion>
  242. <exclusion>
  243. <groupId>com.sun.jersey</groupId>
  244. <artifactId>jersey-core</artifactId>
  245. </exclusion>
  246. <exclusion>
  247. <groupId>com.sun.jersey</groupId>
  248. <artifactId>jersey-json</artifactId>
  249. </exclusion>
  250. <exclusion>
  251. <groupId>io.netty</groupId>
  252. <artifactId>netty</artifactId>
  253. </exclusion>
  254. </exclusions>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.hadoop</groupId>
  258. <artifactId>hadoop-mapreduce-client-core</artifactId>
  259. <scope>compile</scope>
  260. <exclusions>
  261. <exclusion>
  262. <groupId>junit</groupId>
  263. <artifactId>junit</artifactId>
  264. </exclusion>
  265. <exclusion>
  266. <groupId>com.google.inject</groupId>
  267. <artifactId>guice</artifactId>
  268. </exclusion>
  269. <exclusion>
  270. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  271. <artifactId>jersey-test-framework-grizzly2</artifactId>
  272. </exclusion>
  273. <exclusion>
  274. <groupId>com.sun.jersey</groupId>
  275. <artifactId>jersey-server</artifactId>
  276. </exclusion>
  277. <exclusion>
  278. <groupId>com.sun.jersey.contribs</groupId>
  279. <artifactId>jersey-guice</artifactId>
  280. </exclusion>
  281. <exclusion>
  282. <groupId>org.apache.avro</groupId>
  283. <artifactId>avro</artifactId>
  284. </exclusion>
  285. <exclusion>
  286. <groupId>org.apache.hadoop</groupId>
  287. <artifactId>hadoop-annotations</artifactId>
  288. </exclusion>
  289. <exclusion>
  290. <groupId>com.google.inject.extensions</groupId>
  291. <artifactId>guice-servlet</artifactId>
  292. </exclusion>
  293. <exclusion>
  294. <groupId>com.sun.jersey</groupId>
  295. <artifactId>jersey-json</artifactId>
  296. </exclusion>
  297. <exclusion>
  298. <groupId>io.netty</groupId>
  299. <artifactId>netty</artifactId>
  300. </exclusion>
  301. </exclusions>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.hadoop</groupId>
  305. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  306. <scope>compile</scope>
  307. <exclusions>
  308. <exclusion>
  309. <groupId>junit</groupId>
  310. <artifactId>junit</artifactId>
  311. </exclusion>
  312. <exclusion>
  313. <groupId>org.apache.avro</groupId>
  314. <artifactId>avro</artifactId>
  315. </exclusion>
  316. <exclusion>
  317. <groupId>org.apache.hadoop</groupId>
  318. <artifactId>hadoop-annotations</artifactId>
  319. </exclusion>
  320. <exclusion>
  321. <groupId>com.google.inject.extensions</groupId>
  322. <artifactId>guice-servlet</artifactId>
  323. </exclusion>
  324. <exclusion>
  325. <groupId>io.netty</groupId>
  326. <artifactId>netty</artifactId>
  327. </exclusion>
  328. </exclusions>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.apache.hadoop</groupId>
  332. <artifactId>hadoop-annotations</artifactId>
  333. <scope>compile</scope>
  334. <exclusions>
  335. <exclusion>
  336. <groupId>jdk.tools</groupId>
  337. <artifactId>jdk.tools</artifactId>
  338. </exclusion>
  339. </exclusions>
  340. </dependency>
  341. </dependencies>
  342. </project>