pom.xml 11 KB

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