source: proiecte/HadoopJUnit/hadoop-0.20.1/src/contrib/capacity-scheduler/ivy.xml @ 176

Last change on this file since 176 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: 1.8 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
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      extends="runtime"
18      description="artifacts needed to compile/test the application"/>
19    <conf name="test" visibility="private" extends="runtime"/>
20  </configurations>
21
22  <publications>
23    <!--get the artifact from our module name-->
24    <artifact conf="master"/>
25  </publications>
26  <dependencies>
27    <dependency org="commons-logging"
28      name="commons-logging"
29      rev="${commons-logging.version}"
30      conf="common->default"/>
31   <dependency org="junit"
32      name="junit"
33      rev="${junit.version}"
34      conf="common->default"/>
35    <dependency org="log4j"
36      name="log4j"
37      rev="${log4j.version}"
38      conf="common->master"/>
39    <dependency org="org.mortbay.jetty"
40      name="jetty-util"
41      rev="${jetty-util.version}"
42      conf="common->master"/>
43    <dependency org="org.mortbay.jetty"
44      name="jetty"
45      rev="${jetty.version}"
46      conf="common->master"/>
47    <dependency org="org.mortbay.jetty"
48      name="servlet-api-2.5"
49      rev="${servlet-api-2.5.version}"
50      conf="common->master"/> 
51    <dependency org="commons-httpclient"
52      name="commons-httpclient"
53      rev="${commons-httpclient.version}"
54      conf="common->master"/> 
55  </dependencies>
56</ivy-module>
Note: See TracBrowser for help on using the repository browser.