source: proiecte/HadoopJUnit/hadoop-0.20.1/src/contrib/fairscheduler/ivy.xml

Last change on this file 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.4 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-logging"
26      name="commons-logging"
27      rev="${commons-logging.version}"
28      conf="common->default"/>
29    <dependency org="log4j"
30      name="log4j"
31      rev="${log4j.version}"
32      conf="common->master"/>
33    <dependency org="org.mortbay.jetty"
34      name="servlet-api-2.5"
35      rev="${servlet-api-2.5.version}"
36      conf="common->default"/> 
37   <dependency org="junit"
38      name="junit"
39      rev="${junit.version}"
40      conf="common->default"/>
41  </dependencies>
42</ivy-module>
Note: See TracBrowser for help on using the repository browser.