pom.xml 11 KB

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