You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/10/04 19:36:46 UTC

svn commit: r1394224 - /incubator/easyant/core/trunk/module.ant

Author: jlboudart
Date: Thu Oct  4 19:36:46 2012
New Revision: 1394224

URL: http://svn.apache.org/viewvc?rev=1394224&view=rev
Log:
Don't haltOnFailure when installing easyant modules in easyant build

Modified:
    incubator/easyant/core/trunk/module.ant

Modified: incubator/easyant/core/trunk/module.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/module.ant?rev=1394224&r1=1394223&r2=1394224&view=diff
==============================================================================
--- incubator/easyant/core/trunk/module.ant (original)
+++ incubator/easyant/core/trunk/module.ant Thu Oct  4 19:36:46 2012
@@ -187,7 +187,7 @@
 		<attribute name="module" />
 		<attribute name="revision" />
 		<sequential>
-			<ivy:install matcher="exactOrRegexp" from="apache-easyant-plugins" to="core" organisation="@{organisation}" module="@{module}" revision="@{revision}" settingsRef="easyant.ivy.instance" overwrite="${plugin.install.overwrite}" />
+			<ivy:install matcher="exactOrRegexp" from="apache-easyant-plugins" to="core" organisation="@{organisation}" module="@{module}" revision="@{revision}" settingsRef="easyant.ivy.instance" overwrite="${plugin.install.overwrite}" haltOnFailure="false"/>
 		</sequential>
 	</macrodef>