pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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.1.0-SNAPSHOT</version>
  20. <relativePath>../../hadoop-project-dist</relativePath>
  21. </parent>
  22. <artifactId>hadoop-client</artifactId>
  23. <version>3.1.0-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-client</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. </exclusions>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.hadoop</groupId>
  127. <artifactId>hadoop-yarn-api</artifactId>
  128. <scope>compile</scope>
  129. <exclusions>
  130. <exclusion>
  131. <groupId>org.apache.hadoop</groupId>
  132. <artifactId>hadoop-annotations</artifactId>
  133. </exclusion>
  134. <exclusion>
  135. <groupId>com.google.inject</groupId>
  136. <artifactId>guice</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  140. <artifactId>jersey-test-framework-grizzly2</artifactId>
  141. </exclusion>
  142. <exclusion>
  143. <groupId>com.sun.jersey</groupId>
  144. <artifactId>jersey-server</artifactId>
  145. </exclusion>
  146. <exclusion>
  147. <groupId>com.sun.jersey.contribs</groupId>
  148. <artifactId>jersey-guice</artifactId>
  149. </exclusion>
  150. <exclusion>
  151. <groupId>com.google.inject.extensions</groupId>
  152. <artifactId>guice-servlet</artifactId>
  153. </exclusion>
  154. <exclusion>
  155. <groupId>org.apache.avro</groupId>
  156. <artifactId>avro</artifactId>
  157. </exclusion>
  158. <exclusion>
  159. <groupId>com.sun.jersey</groupId>
  160. <artifactId>jersey-core</artifactId>
  161. </exclusion>
  162. <exclusion>
  163. <groupId>com.sun.jersey</groupId>
  164. <artifactId>jersey-json</artifactId>
  165. </exclusion>
  166. <exclusion>
  167. <groupId>io.netty</groupId>
  168. <artifactId>netty</artifactId>
  169. </exclusion>
  170. </exclusions>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.hadoop</groupId>
  174. <artifactId>hadoop-mapreduce-client-core</artifactId>
  175. <scope>compile</scope>
  176. <exclusions>
  177. <exclusion>
  178. <groupId>junit</groupId>
  179. <artifactId>junit</artifactId>
  180. </exclusion>
  181. <exclusion>
  182. <groupId>com.google.inject</groupId>
  183. <artifactId>guice</artifactId>
  184. </exclusion>
  185. <exclusion>
  186. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  187. <artifactId>jersey-test-framework-grizzly2</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>com.sun.jersey</groupId>
  191. <artifactId>jersey-server</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>com.sun.jersey.contribs</groupId>
  195. <artifactId>jersey-guice</artifactId>
  196. </exclusion>
  197. <exclusion>
  198. <groupId>org.apache.avro</groupId>
  199. <artifactId>avro</artifactId>
  200. </exclusion>
  201. <exclusion>
  202. <groupId>org.apache.hadoop</groupId>
  203. <artifactId>hadoop-annotations</artifactId>
  204. </exclusion>
  205. <exclusion>
  206. <groupId>com.google.inject.extensions</groupId>
  207. <artifactId>guice-servlet</artifactId>
  208. </exclusion>
  209. <exclusion>
  210. <groupId>com.sun.jersey</groupId>
  211. <artifactId>jersey-json</artifactId>
  212. </exclusion>
  213. <exclusion>
  214. <groupId>io.netty</groupId>
  215. <artifactId>netty</artifactId>
  216. </exclusion>
  217. <!-- No slf4j backends for downstream clients -->
  218. <exclusion>
  219. <groupId>org.slf4j</groupId>
  220. <artifactId>slf4j-log4j12</artifactId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.hadoop</groupId>
  226. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  227. <scope>compile</scope>
  228. <exclusions>
  229. <exclusion>
  230. <groupId>junit</groupId>
  231. <artifactId>junit</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>org.apache.avro</groupId>
  235. <artifactId>avro</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <groupId>org.apache.hadoop</groupId>
  239. <artifactId>hadoop-annotations</artifactId>
  240. </exclusion>
  241. <exclusion>
  242. <groupId>com.google.inject.extensions</groupId>
  243. <artifactId>guice-servlet</artifactId>
  244. </exclusion>
  245. <exclusion>
  246. <groupId>io.netty</groupId>
  247. <artifactId>netty</artifactId>
  248. </exclusion>
  249. <!-- No slf4j backends for downstream clients -->
  250. <exclusion>
  251. <groupId>org.slf4j</groupId>
  252. <artifactId>slf4j-log4j12</artifactId>
  253. </exclusion>
  254. </exclusions>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.apache.hadoop</groupId>
  258. <artifactId>hadoop-annotations</artifactId>
  259. <scope>compile</scope>
  260. <exclusions>
  261. <exclusion>
  262. <groupId>jdk.tools</groupId>
  263. <artifactId>jdk.tools</artifactId>
  264. </exclusion>
  265. </exclusions>
  266. </dependency>
  267. </dependencies>
  268. </project>