summaryrefslogtreecommitdiffstats
path: root/ivy.xml
blob: f2269896e44d7209f74da7dfb8b431a492f7511a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<ivy-module version="1.1">
    <info organisation="sourceforge" module="ant-contrib" />
    
    <configurations>
        <conf name="default" />
        <conf name="provided" extends="default" />
        <conf name="test" extends="default" />
    </configurations>
    <publications>
        <artifact name="ant-contrib" type="jar" />
    </publications>
    
    
    <dependencies>
        <dependency org="apache"
                    name="bcel"
                    rev="5.1"
                    conf="default->default" />
        <dependency org="apache"
                    name="ant"
                    rev="1.6.5"
                    conf="provided->default" />
        <dependency org="apache"
                    name="xercesImpl"
                    rev="2.6.2"
                    conf="provided->default" />
        <dependency org="apache"
                    name="commons-httpclient"
                    rev="3.0.1"
                    conf="provided->default" />
        <dependency org="junit"
                    name="junit"
                    rev="3.8.1"
                    conf="test->default" />
    </dependencies>
</ivy-module>