You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by eh...@apache.org on 2005/05/13 12:21:56 UTC

svn commit: r170003 - /lucene/java/trunk/build.xml

Author: ehatcher
Date: Fri May 13 03:21:54 2005
New Revision: 170003

URL: http://svn.apache.org/viewcvs?rev=170003&view=rev
Log:
controversial: do not fail the build for contrib components not building successfully.  this is to make Gump happy for now, but in the future a more granular conditional build of each contrib project may be desirable

Modified:
    lucene/java/trunk/build.xml

Modified: lucene/java/trunk/build.xml
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/build.xml?rev=170003&r1=170002&r2=170003&view=diff
==============================================================================
--- lucene/java/trunk/build.xml (original)
+++ lucene/java/trunk/build.xml Fri May 13 03:21:54 2005
@@ -382,7 +382,7 @@
   <macrodef name="contrib-crawl">
     <attribute name="target" default=""/>
     <sequential>
-      <subant target="@{target}" failonerror="true">
+      <subant target="@{target}" failonerror="false">
         <fileset dir="."
                  includes="contrib/*/build.xml"
         />



Re: svn commit: r170003 - /lucene/java/trunk/build.xml

Posted by Doug Cutting <cu...@apache.org>.
ehatcher@apache.org wrote:
> controversial: do not fail the build for contrib components not building successfully.  this is to make Gump happy for now, but in the future a more granular conditional build of each contrib project may be desirable

+1

The contrib stuff doesn't have the same guarantees as core.  Ideally we 
can change this back at some point, when all of the contrib stuff is 
working, but, for now, this is not objectionable to me.

Doug

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-dev-help@lucene.apache.org