You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by je...@apache.org on 2005/09/06 16:15:05 UTC

svn commit: r279003 - /lucene/nutch/trunk/src/plugin/build-plugin.xml

Author: jerome
Date: Tue Sep  6 07:15:01 2005
New Revision: 279003

URL: http://svn.apache.org/viewcvs?rev=279003&view=rev
Log:
Copying jar file no more fails on error (some plugins do not have jar target)

Modified:
    lucene/nutch/trunk/src/plugin/build-plugin.xml

Modified: lucene/nutch/trunk/src/plugin/build-plugin.xml
URL: http://svn.apache.org/viewcvs/lucene/nutch/trunk/src/plugin/build-plugin.xml?rev=279003&r1=279002&r2=279003&view=diff
==============================================================================
--- lucene/nutch/trunk/src/plugin/build-plugin.xml (original)
+++ lucene/nutch/trunk/src/plugin/build-plugin.xml Tue Sep  6 07:15:01 2005
@@ -111,7 +111,7 @@
     <mkdir dir="${deploy.dir}"/>
     <copy file="plugin.xml" todir="${deploy.dir}" 
           preservelastmodified="true"/>
-    <copy file="${build.dir}/${name}.jar" todir="${deploy.dir}"/>
+    <copy file="${build.dir}/${name}.jar" todir="${deploy.dir}" failonerror="false"/>
     <copy todir="${deploy.dir}" flatten="true">
       <fileset refid="lib.jars"/>
     </copy>