root/trunk/module.ivy @ 394

Revision 394, 1.8 kB (checked in by jboudart, 7 months ago)

Exclude ant-trax optional dependencies

  • Property svn:eol-style set to native
Line 
1<!--
2        Copyright 2008-2010 the EasyAnt project
3       
4        See the NOTICE file distributed with this work for additional information
5        regarding copyright ownership.
6       
7        Licensed under the Apache License, Version 2.0 (the "License");
8        you may not use this file except in compliance with the License.
9        You may obtain a copy of the License at
10       
11        http://www.apache.org/licenses/LICENSE-2.0
12       
13        Unless required by applicable law or agreed to in writing, software
14        distributed under the License is distributed on an "AS IS" BASIS,
15        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16        See the License for the specific language governing permissions and
17        limitations under the License. 
18-->
19<ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
20        <info organisation="org.apache.easyant" module="easyant-core" revision="0.7" status="integration"/>
21
22        <configurations>
23                <conf name="default" visibility="public" description="runtime dependencies and master artifact can be used with this conf"/>
24                <conf name="test" visibility="private" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases."/>
25        </configurations>
26        <dependencies>
27                <dependency org="junit" name="junit" rev="4.4" conf="test->default"/>
28                <dependency org="org.apache.ant" name="ant" rev="1.8.0" conf="default->default"/>
29                <dependency org="org.apache.ant" name="ant-nodeps" rev="1.8.0" conf="default->default"/>
30                <dependency org="org.apache.ant" name="ant-trax" rev="1.8.0" conf="default->master"/>
31                <dependency org="org.apache.ivy" name="ivy" rev="2.1.0-patched" conf="default->default"/>
32                <dependency org="ant-contrib" name="ant-contrib" rev="1.0b2" conf="default->default"/>
33
34        </dependencies>
35</ivy-module>
Note: See TracBrowser for help on using the browser.