<ivy-module version="1.0">
    <info organisation="rbs" module="test-project" revision="1.0"/>
    <configurations>
    	<conf name="COMMON" visibility="public" description="common deps"/>
    	<conf name="RUNTIME" visibility="public" description="compile-time deps" extends="COMMON" />
    	<conf name="COMPILE" visibility="public" description="compile-time deps" extends="RUNTIME" />
    	<conf name="TEST" visibility="public" description="test deps" extends="COMPILE"/>
    	<conf name="ANALYSES_TOOLS" visibility="public" description="test deps" extends="COMMON"/>
    </configurations>
    <dependencies>
        <dependency org="org.apache" name="commons-lang" rev="2.5" conf="RUNTIME->default">
        	<artifact name="commons-lang" type="jar"/>
        	<artifact name="commons-lang" type="sources" ext="zip" conf="COMPILE->default"/>
        </dependency>
        <dependency org="org.apache" name="log4j" rev="1.2.16" conf="RUNTIME->default" />
        <dependency org="org.junit" name="junit" rev="4.8.2" conf="TEST->default">
        	<artifact name="junit-dep" />
        	<!-- log bug with Apache Ivy:
        		1. source attachments with extension other than '.zip' do not get attached to Eclipse
        		2. source attachements with different names (e.g. for a source super-set like JUnit/JUnit-dep) do not get attached to Eclipse -->
        	<artifact name="junit-dep" type="src" ext="zip" />
        </dependency>
        <dependency org="org.hamcrest" name="hamcrest" rev="1.2" conf="TEST->default">
        	<artifact name="hamcrest-all" type="jar"/>
        </dependency>
        <dependency org="cobertura" name="cobertura" rev="1.9.4.1" conf="ANALYSES_TOOLS->default">
        	<artifact name="cobertura" type="jar"/>
        	<artifact name="asm-3.0" type="jar"/>
        	<artifact name="asm-tree-3.0" type="jar"/>
        	<artifact name="jakarta-oro-2.0.8" type="jar"/>
        </dependency>
    </dependencies>
</ivy-module>
