Author: bentmann
Date: Wed Dec 10 09:07:57 2008
New Revision: 725342
URL: http://svn.apache.org/viewvc?rev=725342&view=rev
Log:
o Made sure we fail early when the preps didn't work
Modified:
maven/components/branches/maven-2.0.10-RC/build.xml
Modified: maven/components/branches/maven-2.0.10-RC/build.xml
URL:
http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.10-RC/build.xml?rev=725342&r1=725341&r2=725342&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.10-RC/build.xml (original)
+++ maven/components/branches/maven-2.0.10-RC/build.xml Wed Dec 10 09:07:57 2008
@@ -213,12 +213,12 @@
<target name="its-win32" if="its.win32">
<echo>Retrieving integration tests</echo>
- <exec dir="${basedir}/${itPom.artifactId}" executable="cmd">
+ <exec failonerror="true" dir="${basedir}/${itPom.artifactId}"
executable="cmd">
<arg value="/c"/>
<arg value="${maven.home}\bin\mvn.bat"/>
<arg value="process-resources"/>
</exec>
- <exec dir="${basedir}/${itPom.artifactId}/target/classes" executable="cmd">
+ <exec failonerror="true"
dir="${basedir}/${itPom.artifactId}/target/classes" executable="cmd">
<arg value="/c"/>
<arg value="${maven.home}\bin\mvn.bat"/>
<arg value="package"/>
@@ -237,10 +237,10 @@
<target name="its-unix" if="its.unix">
<echo>Retrieving integration tests</echo>
- <exec dir="${basedir}/${itPom.artifactId}"
executable="${maven.home}/bin/mvn">
+ <exec failonerror="true" dir="${basedir}/${itPom.artifactId}"
executable="${maven.home}/bin/mvn">
<arg value="process-resources"/>
</exec>
- <exec dir="${basedir}/${itPom.artifactId}/target/classes"
executable="${maven.home}/bin/mvn">
+ <exec failonerror="true"
dir="${basedir}/${itPom.artifactId}/target/classes"
executable="${maven.home}/bin/mvn">
<arg value="package"/>
</exec>