source: proiecte/HadoopJUnit/hadoop-0.20.1/src/contrib/hdfsproxy/ivy.xml @ 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: 2.5 KB
Line 
1<?xml version="1.0" ?>
2<ivy-module version="1.0">
3  <info organisation="org.apache.hadoop" module="${ant.project.name}">
4    <license name="Apache 2.0"/>
5    <ivyauthor name="Apache Hadoop Team" url="http://hadoop.apache.org"/>
6    <description>
7        Apache Hadoop contrib
8    </description>
9  </info>
10  <configurations defaultconfmapping="default">
11    <!--these match the Maven configurations-->
12    <conf name="default" extends="master,runtime"/>
13    <conf name="master" description="contains the artifact but no dependencies"/>
14    <conf name="runtime" description="runtime but not the artifact" />
15
16    <conf name="common" visibility="private" 
17      description="artifacts needed to compile/test the application"/>
18  </configurations>
19
20  <publications>
21    <!--get the artifact from our module name-->
22    <artifact conf="master"/>
23  </publications>
24  <dependencies>
25    <dependency org="commons-httpclient"
26      name="commons-httpclient"
27      rev="${commons-httpclient.version}"
28      conf="common->master"/>
29    <dependency org="commons-logging"
30      name="commons-logging"
31      rev="${commons-logging.version}"
32      conf="common->default"/>
33    <dependency org="log4j"
34      name="log4j"
35      rev="${log4j.version}"
36      conf="common->master"/>
37    <dependency org="org.mortbay.jetty"
38      name="servlet-api-2.5"
39      rev="${servlet-api-2.5.version}"
40      conf="common->default"/>
41    <dependency org="commons-logging"
42      name="commons-logging"
43      rev="${commons-logging.version}"
44      conf="common->master"/>
45    <dependency org="commons-logging"
46      name="commons-logging-api"
47      rev="${commons-logging-api.version}"
48      conf="common->default"/>
49    <dependency org="junit"
50      name="junit"
51      rev="${junit.version}"
52      conf="common->default"/>
53    <dependency org="org.slf4j"
54      name="slf4j-api"
55      rev="${slf4j-api.version}"
56      conf="common->default"/>
57    <dependency org="org.slf4j"
58      name="slf4j-log4j12"
59      rev="${slf4j-log4j12.version}"
60      conf="common->master"/>
61    <dependency org="xmlenc"
62      name="xmlenc"
63      rev="${xmlenc.version}"
64      conf="common->default"/>
65    <dependency org="org.mortbay.jetty"
66      name="jetty"
67      rev="${jetty.version}"
68      conf="common->default"/>
69    <dependency org="org.mortbay.jetty"
70      name="servlet-api-2.5"
71      rev="${servlet-api-2.5.version}"
72      conf="common->default"/>
73    <dependency org="org.eclipse.jdt"
74      name="core"
75      rev="${core.version}"
76      conf="common->default"/>
77  </dependencies>
78</ivy-module>
Note: See TracBrowser for help on using the repository browser.