hadoop-core.pom 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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. This POM is released under the Apache License, Version 2.0
  6. -->
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>org.apache.hadoop</groupId>
  9. <artifactId>hadoop-core</artifactId>
  10. <packaging>jar</packaging>
  11. <version>${hadoop.version}</version>
  12. <description>
  13. Hadoop is the distributed computing framework of Apache; hadoop-core contains
  14. the filesystem, job tracker and map/reduce modules
  15. </description>
  16. <licenses>
  17. <license>
  18. <name>Apache License, Version 2.0</name>
  19. <url>http://apache.org/licenses/LICENSE-2.0</url>
  20. </license>
  21. </licenses>
  22. <dependencies>
  23. <!-- always include commons-logging and log4J -->
  24. <dependency>
  25. <groupId>commons-logging</groupId>
  26. <artifactId>commons-logging</artifactId>
  27. <version>${commons-logging.version}</version>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>avalon-framework</groupId>
  31. <artifactId>avalon-framework</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>servlet-api</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>logkit</groupId>
  43. <artifactId>logkit</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>log4j</groupId>
  47. <artifactId>log4j</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>log4j</groupId>
  53. <artifactId>log4j</artifactId>
  54. <version>${log4j.version}</version>
  55. <scope>optional</scope>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>javax.mail</groupId>
  59. <artifactId>mail</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>javax.jms</groupId>
  63. <artifactId>jms</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>com.sun.jdmk</groupId>
  67. <artifactId>jmxtools</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <groupId>com.sun.jmx</groupId>
  71. <artifactId>jmxri</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <!--SLF4J is a JAR-based dependency; this POM binds it to log4J-->
  76. <dependency>
  77. <groupId>org.slf4j</groupId>
  78. <artifactId>slf4j-api</artifactId>
  79. <version>${slf4j-api.version}</version>
  80. <scope>optional</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.slf4j</groupId>
  84. <artifactId>slf4j-log4j12</artifactId>
  85. <version>${slf4j-log4j12.version}</version>
  86. <scope>optional</scope>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>log4j</groupId>
  90. <artifactId>log4j</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <!--Httpclient and its components are optional-->
  95. <dependency>
  96. <groupId>commons-httpclient</groupId>
  97. <artifactId>commons-httpclient</artifactId>
  98. <version>3.1</version>
  99. <scope>optional</scope>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>commons-logging</groupId>
  103. <artifactId>commons-logging</artifactId>
  104. </exclusion>
  105. <exclusion>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-codec</groupId>
  113. <artifactId>commons-codec</artifactId>
  114. <version>1.3</version>
  115. <scope>optional</scope>
  116. </dependency>
  117. <!--CLI is needed to scan the command line, but only the 1.0 branch is released -->
  118. <dependency>
  119. <groupId>commons-cli</groupId>
  120. <artifactId>commons-cli</artifactId>
  121. <version>2.0-20070823</version>
  122. <scope>optional</scope>
  123. </dependency>
  124. <!-- this is used for the ftp:// filesystem-->
  125. <dependency>
  126. <groupId>commons-net</groupId>
  127. <artifactId>commons-net</artifactId>
  128. <version>1.4.1</version>
  129. <scope>optional</scope>
  130. </dependency>
  131. <!-- Jetty is used to serve up the application. It is marked as optional because
  132. clients do not need it. All server-side deployments will need
  133. all of these files.-->
  134. <dependency>
  135. <groupId>javax.servlet</groupId>
  136. <artifactId>servlet-api</artifactId>
  137. <version>${servlet-api.version}</version>
  138. <scope>optional</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>jetty</groupId>
  142. <artifactId>org.mortbay.jetty</artifactId>
  143. <version>${jetty.version}</version>
  144. <scope>optional</scope>
  145. </dependency>
  146. <!--JSP support -->
  147. <dependency>
  148. <groupId>org.mortbay.jetty</groupId>
  149. <artifactId>jsp-2.1</artifactId>
  150. <version>${jetty.version}</version>
  151. <scope>optional</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.mortbay.jetty</groupId>
  155. <artifactId>jsp-api-2.1</artifactId>
  156. <version>${jetty.version}</version>
  157. <scope>optional</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-el</groupId>
  161. <artifactId>commons-el</artifactId>
  162. <version>${commons-el.version}</version>
  163. <scope>optional</scope>
  164. </dependency>
  165. <!--JSPC assistance-->
  166. <dependency>
  167. <groupId>org.eclipse.jdt</groupId>
  168. <artifactId>core</artifactId>
  169. <version>${core.version}</version>
  170. <scope>optional</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.ant</groupId>
  174. <artifactId>ant</artifactId>
  175. <version>${apacheant.version}</version>
  176. <scope>optional</scope>
  177. </dependency>
  178. <!-- JetS3t is a client library for S3.
  179. -It is only needed if you want to work with S3 filesystems
  180. -It pulls in commons-logging 1.1.1 and does not exclude all the cruft that comes with it.
  181. By excluding it we stay in control of versions and dependencies
  182. -->
  183. <dependency>
  184. <groupId>net.java.dev.jets3t</groupId>
  185. <artifactId>jets3t</artifactId>
  186. <version>${jets3t.version}</version>
  187. <scope>optional</scope>
  188. <exclusions>
  189. <exclusion>
  190. <groupId>commons-logging</groupId>
  191. <artifactId>commons-logging</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>junit</groupId>
  195. <artifactId>junit</artifactId>
  196. </exclusion>
  197. </exclusions>
  198. </dependency>
  199. <!--Kosmos filesystem
  200. http://kosmosfs.sourceforge.net/
  201. This is not in the central repository
  202. -->
  203. <!--
  204. <dependency>
  205. <groupId>org.kosmix</groupId>
  206. <artifactId>kfs</artifactId>
  207. <version>0.1</version>
  208. <scope>optional</scope>
  209. </dependency>
  210. -->
  211. <!--
  212. http://xmlenc.sourceforge.net/
  213. "The xmlenc library is a fast stream-based XML output library for Java."
  214. -->
  215. <dependency>
  216. <groupId>xmlenc</groupId>
  217. <artifactId>xmlenc</artifactId>
  218. <version>0.52</version>
  219. <scope>optional</scope>
  220. </dependency>
  221. </dependencies>
  222. </project>