pom.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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/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.8.0-SNAPSHOT</version>
  20. <relativePath>../hadoop-project-dist</relativePath>
  21. </parent>
  22. <groupId>org.apache.hadoop</groupId>
  23. <artifactId>hadoop-client</artifactId>
  24. <version>2.8.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>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</artifactId>
  98. <scope>compile</scope>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>commons-daemon</groupId>
  102. <artifactId>commons-daemon</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>org.apache.avro</groupId>
  106. <artifactId>avro</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>org.mortbay.jetty</groupId>
  110. <artifactId>jetty</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>com.sun.jersey</groupId>
  114. <artifactId>jersey-core</artifactId>
  115. </exclusion>
  116. <exclusion>
  117. <groupId>com.sun.jersey</groupId>
  118. <artifactId>jersey-server</artifactId>
  119. </exclusion>
  120. <exclusion>
  121. <groupId>javax.servlet</groupId>
  122. <artifactId>servlet-api</artifactId>
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.hadoop</groupId>
  128. <artifactId>hadoop-mapreduce-client-app</artifactId>
  129. <scope>compile</scope>
  130. <exclusions>
  131. <exclusion>
  132. <groupId>javax.servlet</groupId>
  133. <artifactId>servlet-api</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>org.apache.hadoop</groupId>
  137. <artifactId>hadoop-yarn-server-nodemanager</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.hadoop</groupId>
  141. <artifactId>hadoop-yarn-server-web-proxy</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>org.apache.hadoop</groupId>
  145. <artifactId>hadoop-annotations</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>com.google.inject.extensions</groupId>
  149. <artifactId>guice-servlet</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>junit</groupId>
  153. <artifactId>junit</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>org.apache.avro</groupId>
  157. <artifactId>avro</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>jline</groupId>
  161. <artifactId>jline</artifactId>
  162. </exclusion>
  163. <exclusion>
  164. <groupId>io.netty</groupId>
  165. <artifactId>netty</artifactId>
  166. </exclusion>
  167. </exclusions>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.hadoop</groupId>
  171. <artifactId>hadoop-yarn-api</artifactId>
  172. <scope>compile</scope>
  173. <exclusions>
  174. <exclusion>
  175. <groupId>org.apache.hadoop</groupId>
  176. <artifactId>hadoop-annotations</artifactId>
  177. </exclusion>
  178. <exclusion>
  179. <groupId>com.google.inject</groupId>
  180. <artifactId>guice</artifactId>
  181. </exclusion>
  182. <exclusion>
  183. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  184. <artifactId>jersey-test-framework-grizzly2</artifactId>
  185. </exclusion>
  186. <exclusion>
  187. <groupId>com.sun.jersey</groupId>
  188. <artifactId>jersey-server</artifactId>
  189. </exclusion>
  190. <exclusion>
  191. <groupId>com.sun.jersey.contribs</groupId>
  192. <artifactId>jersey-guice</artifactId>
  193. </exclusion>
  194. <exclusion>
  195. <groupId>com.google.inject.extensions</groupId>
  196. <artifactId>guice-servlet</artifactId>
  197. </exclusion>
  198. <exclusion>
  199. <groupId>org.apache.avro</groupId>
  200. <artifactId>avro</artifactId>
  201. </exclusion>
  202. <exclusion>
  203. <groupId>com.sun.jersey</groupId>
  204. <artifactId>jersey-core</artifactId>
  205. </exclusion>
  206. <exclusion>
  207. <groupId>com.sun.jersey</groupId>
  208. <artifactId>jersey-json</artifactId>
  209. </exclusion>
  210. <exclusion>
  211. <groupId>io.netty</groupId>
  212. <artifactId>netty</artifactId>
  213. </exclusion>
  214. </exclusions>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.hadoop</groupId>
  218. <artifactId>hadoop-mapreduce-client-core</artifactId>
  219. <scope>compile</scope>
  220. <exclusions>
  221. <exclusion>
  222. <groupId>junit</groupId>
  223. <artifactId>junit</artifactId>
  224. </exclusion>
  225. <exclusion>
  226. <groupId>com.google.inject</groupId>
  227. <artifactId>guice</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  231. <artifactId>jersey-test-framework-grizzly2</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>com.sun.jersey</groupId>
  235. <artifactId>jersey-server</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <groupId>com.sun.jersey.contribs</groupId>
  239. <artifactId>jersey-guice</artifactId>
  240. </exclusion>
  241. <exclusion>
  242. <groupId>org.apache.avro</groupId>
  243. <artifactId>avro</artifactId>
  244. </exclusion>
  245. <exclusion>
  246. <groupId>org.apache.hadoop</groupId>
  247. <artifactId>hadoop-annotations</artifactId>
  248. </exclusion>
  249. <exclusion>
  250. <groupId>com.google.inject.extensions</groupId>
  251. <artifactId>guice-servlet</artifactId>
  252. </exclusion>
  253. <exclusion>
  254. <groupId>com.sun.jersey</groupId>
  255. <artifactId>jersey-json</artifactId>
  256. </exclusion>
  257. <exclusion>
  258. <groupId>io.netty</groupId>
  259. <artifactId>netty</artifactId>
  260. </exclusion>
  261. </exclusions>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.hadoop</groupId>
  265. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  266. <scope>compile</scope>
  267. <exclusions>
  268. <exclusion>
  269. <groupId>junit</groupId>
  270. <artifactId>junit</artifactId>
  271. </exclusion>
  272. <exclusion>
  273. <groupId>org.apache.avro</groupId>
  274. <artifactId>avro</artifactId>
  275. </exclusion>
  276. <exclusion>
  277. <groupId>org.apache.hadoop</groupId>
  278. <artifactId>hadoop-annotations</artifactId>
  279. </exclusion>
  280. <exclusion>
  281. <groupId>com.google.inject.extensions</groupId>
  282. <artifactId>guice-servlet</artifactId>
  283. </exclusion>
  284. <exclusion>
  285. <groupId>io.netty</groupId>
  286. <artifactId>netty</artifactId>
  287. </exclusion>
  288. </exclusions>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.hadoop</groupId>
  292. <artifactId>hadoop-annotations</artifactId>
  293. <scope>compile</scope>
  294. <exclusions>
  295. <exclusion>
  296. <groupId>jdk.tools</groupId>
  297. <artifactId>jdk.tools</artifactId>
  298. </exclusion>
  299. </exclusions>
  300. </dependency>
  301. </dependencies>
  302. </project>