source: proiecte/HadoopJUnit/hadoop-0.20.1/ivy/hadoop-core.pom @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

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