You are viewing a plain text version of this content. The canonical link for it is here.
Posted to imperius-commits@incubator.apache.org by jn...@apache.org on 2008/01/19 03:16:09 UTC

svn commit: r613352 - /incubator/imperius/trunk/build.xml

Author: jneeraj
Date: Fri Jan 18 19:16:08 2008
New Revision: 613352

URL: http://svn.apache.org/viewvc?rev=613352&view=rev
Log:
fixed clean targets

Modified:
    incubator/imperius/trunk/build.xml

Modified: incubator/imperius/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/imperius/trunk/build.xml?rev=613352&r1=613351&r2=613352&view=diff
==============================================================================
--- incubator/imperius/trunk/build.xml (original)
+++ incubator/imperius/trunk/build.xml Fri Jan 18 19:16:08 2008
@@ -365,7 +365,7 @@
 		
 		<!-- get maven to clean up the generated files -->
 		<exec executable="${MAVEN_EXECUTABLE}" searchpath="true" dir="${IMPERIUS_SVN_MODULES}" failonerror="true">
-			<arg line="clean"/>
+			<arg line="clean -Dbuild=all"/>
 			<env key="MAVEN_TERMINATE_CMD" value="on" />
 		</exec>
 	</target>
@@ -411,7 +411,7 @@
 	<target name="build_all" depends="directory_structure">
 		<!-- get maven to clean up any existing generated files -->
 		<exec executable="${MAVEN_EXECUTABLE}" searchpath="true" dir="${IMPERIUS_SVN_MODULES}" failonerror="true">
-			<arg line="clean"/>
+			<arg line="clean -Dbuild=all"/>
 			<env key="MAVEN_TERMINATE_CMD" value="on" />
 		</exec>