hadoop-core.pom 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <!--
  5. Licensed to the Apache Software Foundation (ASF) under one or more
  6. contributor license agreements. See the NOTICE file distributed with
  7. this work for additional information regarding copyright ownership.
  8. The ASF licenses this file to You under the Apache License, Version 2.0
  9. (the "License"); you may not use this file except in compliance with
  10. the License. You may obtain a copy of the License at
  11. http://www.apache.org/licenses/LICENSE-2.0
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. -->
  18. <modelVersion>4.0.0</modelVersion>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-core</artifactId>
  21. <packaging>jar</packaging>
  22. <version>${hadoop.version}</version>
  23. <description>
  24. Apache Hadoop Core is a software platform that lets one easily write and run applications that process vast amounts of datata
  25. </description>
  26. <licenses>
  27. <license>
  28. <name>Apache License, Version 2.0</name>
  29. <url>http://apache.org/licenses/LICENSE-2.0</url>
  30. </license>
  31. </licenses>
  32. <dependencies>
  33. <!-- always include commons-logging and log4J -->
  34. <dependency>
  35. <groupId>commons-logging</groupId>
  36. <artifactId>commons-logging</artifactId>
  37. <version>${commons-logging.version}</version>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>avalon-framework</groupId>
  41. <artifactId>avalon-framework</artifactId>
  42. </exclusion>
  43. <exclusion>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>servlet-api</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. </exclusion>
  51. <exclusion>
  52. <groupId>logkit</groupId>
  53. <artifactId>logkit</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>log4j</groupId>
  57. <artifactId>log4j</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>log4j</groupId>
  63. <artifactId>log4j</artifactId>
  64. <version>${log4j.version}</version>
  65. <scope>optional</scope>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>javax.mail</groupId>
  69. <artifactId>mail</artifactId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>javax.jms</groupId>
  73. <artifactId>jms</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>com.sun.jdmk</groupId>
  77. <artifactId>jmxtools</artifactId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>com.sun.jmx</groupId>
  81. <artifactId>jmxri</artifactId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. <!--SLF4J is a JAR-based dependency; this POM binds it to log4J-->
  86. <dependency>
  87. <groupId>org.slf4j</groupId>
  88. <artifactId>slf4j-api</artifactId>
  89. <version>${slf4j-api.version}</version>
  90. <scope>optional</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.slf4j</groupId>
  94. <artifactId>slf4j-log4j12</artifactId>
  95. <version>${slf4j-log4j12.version}</version>
  96. <scope>optional</scope>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>log4j</groupId>
  100. <artifactId>log4j</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <!--Httpclient and its components are optional-->
  105. <dependency>
  106. <groupId>commons-httpclient</groupId>
  107. <artifactId>commons-httpclient</artifactId>
  108. <version>3.1</version>
  109. <scope>optional</scope>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>commons-logging</groupId>
  113. <artifactId>commons-logging</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>junit</groupId>
  117. <artifactId>junit</artifactId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-codec</groupId>
  123. <artifactId>commons-codec</artifactId>
  124. <version>1.3</version>
  125. <scope>optional</scope>
  126. </dependency>
  127. <!--CLI is needed to scan the command line, but only the 1.0 branch is released -->
  128. <dependency>
  129. <groupId>commons-cli</groupId>
  130. <artifactId>commons-cli</artifactId>
  131. <version>2.0-20070823</version>
  132. <scope>optional</scope>
  133. </dependency>
  134. <!-- this is used for the ftp:// filesystem-->
  135. <dependency>
  136. <groupId>commons-net</groupId>
  137. <artifactId>commons-net</artifactId>
  138. <version>1.4.1</version>
  139. <scope>optional</scope>
  140. </dependency>
  141. <!-- Jetty is used to serve up the application. It is marked as optional because
  142. clients do not need it. All server-side deployments will need
  143. all of these files.-->
  144. <dependency>
  145. <groupId>javax.servlet</groupId>
  146. <artifactId>servlet-api</artifactId>
  147. <version>${servlet-api.version}</version>
  148. <scope>optional</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>jetty</groupId>
  152. <artifactId>org.mortbay.jetty</artifactId>
  153. <version>${jetty.version}</version>
  154. <scope>optional</scope>
  155. </dependency>
  156. <!--JSP support -->
  157. <dependency>
  158. <groupId>org.mortbay.jetty</groupId>
  159. <artifactId>jsp-2.1</artifactId>
  160. <version>${jetty.version}</version>
  161. <scope>optional</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.mortbay.jetty</groupId>
  165. <artifactId>jsp-api-2.1</artifactId>
  166. <version>${jetty.version}</version>
  167. <scope>optional</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-el</groupId>
  171. <artifactId>commons-el</artifactId>
  172. <version>${commons-el.version}</version>
  173. <scope>optional</scope>
  174. </dependency>
  175. <!--JSPC assistance-->
  176. <dependency>
  177. <groupId>org.eclipse.jdt</groupId>
  178. <artifactId>core</artifactId>
  179. <version>${core.version}</version>
  180. <scope>optional</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.ant</groupId>
  184. <artifactId>ant</artifactId>
  185. <version>${apacheant.version}</version>
  186. <scope>optional</scope>
  187. </dependency>
  188. <!-- JetS3t is a client library for S3.
  189. -It is only needed if you want to work with S3 filesystems
  190. -It pulls in commons-logging 1.1.1 and does not exclude all the cruft that comes with it.
  191. By excluding it we stay in control of versions and dependencies
  192. -->
  193. <dependency>
  194. <groupId>net.java.dev.jets3t</groupId>
  195. <artifactId>jets3t</artifactId>
  196. <version>${jets3t.version}</version>
  197. <scope>optional</scope>
  198. <exclusions>
  199. <exclusion>
  200. <groupId>commons-logging</groupId>
  201. <artifactId>commons-logging</artifactId>
  202. </exclusion>
  203. <exclusion>
  204. <groupId>junit</groupId>
  205. <artifactId>junit</artifactId>
  206. </exclusion>
  207. </exclusions>
  208. </dependency>
  209. <!--Kosmos filesystem
  210. http://kosmosfs.sourceforge.net/
  211. This is not in the central repository
  212. -->
  213. <!--
  214. <dependency>
  215. <groupId>org.kosmix</groupId>
  216. <artifactId>kfs</artifactId>
  217. <version>0.1</version>
  218. <scope>optional</scope>
  219. </dependency>
  220. -->
  221. <!--
  222. http://xmlenc.sourceforge.net/
  223. "The xmlenc library is a fast stream-based XML output library for Java."
  224. -->
  225. <dependency>
  226. <groupId>xmlenc</groupId>
  227. <artifactId>xmlenc</artifactId>
  228. <version>0.52</version>
  229. <scope>optional</scope>
  230. </dependency>
  231. </dependencies>
  232. </project>