Author: nick
Date: Tue Nov 28 07:53:54 2006
New Revision: 480101
URL: http://svn.apache.org/viewvc?view=rev&rev=480101
Log:
We need to ensure we have the main code compiled before running contrib and
scratchpad tests
Modified:
jakarta/poi/trunk/build.xml
Modified: jakarta/poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/jakarta/poi/trunk/build.xml?view=diff&rev=480101&r1=480100&r2=480101
==============================================================================
--- jakarta/poi/trunk/build.xml (original)
+++ jakarta/poi/trunk/build.xml Tue Nov 28 07:53:54 2006
@@ -456,7 +456,7 @@
</uptodate>
</target>
- <target name="test-scratchpad"
depends="compile-scratchpad,-test-scratchpad-check"
unless="scratchpad.test.notRequired">
+ <target name="test-scratchpad"
depends="compile-main,compile-scratchpad,-test-scratchpad-check"
unless="scratchpad.test.notRequired">
<junit printsummary="yes" fork="no"
haltonfailure="${halt.on.test.failure}"
failureproperty="scratchpad.test.failed">
<classpath>
<path refid="scratchpad.classpath"/>
@@ -517,7 +517,7 @@
</uptodate>
</target>
- <target name="test-contrib" depends="compile-contrib,-test-contrib-check"
unless="contrib.test.notRequired">
+ <target name="test-contrib"
depends="compile-main,compile-contrib,-test-contrib-check"
unless="contrib.test.notRequired">
<junit printsummary="yes" fork="no"
haltonfailure="${halt.on.test.failure}" failureproperty="contrib.test.failed">
<classpath>
<path refid="contrib.classpath"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List: http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/