35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<ivy-module version="1.1">
|
|
|
|
<info organisation="@ORGANISATION@" module="@PROJECT_NAME@"/>
|
|
|
|
<configurations>
|
|
<!-- default configuration that 'by default' pulls in the global configuration -->
|
|
<conf name="default" extends="global"/>
|
|
|
|
<!-- core dependencies needed at compile-time, test-time, and runtime -->
|
|
<conf name="global" visibility="private"/>
|
|
|
|
<!-- additional dependencies needed only at build-time -->
|
|
<conf name="buildtime" visibility="private"/>
|
|
|
|
<!-- additional dependencies needed only at test-time -->
|
|
<conf name="test" visibility="private"/>
|
|
</configurations>
|
|
|
|
<dependencies defaultconf="global->default">
|
|
<!-- global (compile, test, runtime) dependencies -->
|
|
<dependency org="apache" name="commons-logging" rev="1.1"/>
|
|
<dependency org="apache" name="log4j" rev="1.2.13"/>
|
|
<dependency org="org.springframework" name="spring-beans" rev="2.0-rc3"/>
|
|
<dependency org="org.springframework" name="spring-core" rev="2.0-rc3"/>
|
|
<dependency org="org.springframework" name="spring-context" rev="2.0-rc3"/>
|
|
|
|
<!-- build time only dependencies -->
|
|
|
|
<!-- test time only dependencies -->
|
|
<dependency org="easymock" name="easymock" rev="1.1" conf="test->default"/>
|
|
<dependency org="cenqua" name="clover" rev="1.3.11" conf="test->default"/>
|
|
<dependency org="junit" name="junit" rev="3.8.1" conf="test->default"/>
|
|
<dependency org="springframework" name="spring-mock" rev="2.0-rc3" conf="test->default"/>
|
|
</dependencies>
|
|
</ivy-module> |