shortened build properties "org.junit.version" to "junit.version" and "org.testng.version" to "testng.version"; reverted SLF4J version back to 1.5.3 (for Hibernate 3.3.1 compatibility)

This commit is contained in:
Juergen Hoeller
2011-06-09 13:51:30 +00:00
parent a8ab9af002
commit 7a6b2cfe1f
21 changed files with 81 additions and 81 deletions

View File

@@ -32,7 +32,7 @@
</junit>
<ivy:cachepath resolveId="testng.classpath" pathid="testng.classpath" organisation="org.testng"
module="com.springsource.org.testng" revision="${org.testng.version}"
module="com.springsource.org.testng" revision="${testng.version}"
conf="runtime" type="jar" inline="true" log="download-only"/>
<taskdef name="testng" classpathref="testng.classpath" classname="org.testng.TestNGAntTask" />
<mkdir dir="${test-results.output.dir}/testng"/>

View File

@@ -36,7 +36,7 @@
<dependency org="org.hibernate" name="com.springsource.org.hibernate" rev="3.3.1.GA" conf="test->compile"/>
<dependency org="org.hsqldb" name="com.springsource.org.hsqldb" rev="1.8.0.9" conf="test->compile"/>
<dependency org="org.junit" name="com.springsource.junit" rev="3.8.2" conf="optional->compile"/>
<dependency org="org.junit" name="com.springsource.org.junit" rev="${org.junit.version}" conf="optional->compile"/>
<dependency org="org.junit" name="com.springsource.org.junit" rev="${junit.version}" conf="optional->compile"/>
<dependency org="org.slf4j" name="com.springsource.slf4j.jcl" rev="${slf4j.version}" conf="test->compile"/>
<dependency org="org.springframework" name="org.springframework.beans" rev="latest.integration" conf="optional->compile"/>
<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration" conf="optional->compile"/>
@@ -47,7 +47,7 @@
<dependency org="org.springframework" name="org.springframework.web" rev="latest.integration" conf="optional->compile"/>
<dependency org="org.springframework" name="org.springframework.web.portlet" rev="latest.integration" conf="optional->compile"/>
<dependency org="org.springframework" name="org.springframework.web.servlet" rev="latest.integration" conf="optional->compile"/>
<dependency org="org.testng" name="com.springsource.org.testng" rev="${org.testng.version}" conf="optional->compile"/>
<dependency org="org.testng" name="com.springsource.org.testng" rev="${testng.version}" conf="optional->compile"/>
</dependencies>
</ivy-module>