You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2013/02/15 09:56:12 UTC

svn commit: r1446478 - /ace/trunk/cnf/build.xml

Author: marrs
Date: Fri Feb 15 08:56:12 2013
New Revision: 1446478

URL: http://svn.apache.org/r1446478
Log:
ACE-335 Made one of the deep targets not recurse like the others.

Modified:
    ace/trunk/cnf/build.xml

Modified: ace/trunk/cnf/build.xml
URL: http://svn.apache.org/viewvc/ace/trunk/cnf/build.xml?rev=1446478&r1=1446477&r2=1446478&view=diff
==============================================================================
--- ace/trunk/cnf/build.xml (original)
+++ ace/trunk/cnf/build.xml Fri Feb 15 08:56:12 2013
@@ -36,7 +36,9 @@
 	
 	<!-- TestNG support -->
 	<target name="deeptestng" depends="init" if="project.dependson">
-		<subant target="testng" inheritAll="false" buildpath="${project.dependson}" />
+		<subant target="testng" inheritAll="false" buildpath="${project.dependson}">
+			<property name="donotrecurse" value="true" />
+		</subant>
 	</target>
 
 	<target name="testng" depends="init, compileTests" if="project.testpathexists">