You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/10/08 13:36:42 UTC

svn commit: r1395518 - in /lucene/dev/trunk: lucene/build.xml solr/build.xml

Author: rmuir
Date: Mon Oct  8 11:36:41 2012
New Revision: 1395518

URL: http://svn.apache.org/viewvc?rev=1395518&view=rev
Log:
don't fail the build if we cant delete on windows (it doesnt matter)

Modified:
    lucene/dev/trunk/lucene/build.xml
    lucene/dev/trunk/solr/build.xml

Modified: lucene/dev/trunk/lucene/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/build.xml?rev=1395518&r1=1395517&r2=1395518&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/build.xml (original)
+++ lucene/dev/trunk/lucene/build.xml Mon Oct  8 11:36:41 2012
@@ -544,12 +544,9 @@
     <property name="lucene-core.uptodate" value="true"/>
   </target>
 
-  <!-- TODO: in the future, we don't need to actually put
-       jars in the lib/ folders, but can just put in classpath.
-       only packaging tasks really need that (and could do it
-       under build/ directories) -->
+  <!-- NOTE: not really useful anymore ... -->
   <target name="clean-jars" description="Clean local jars">
-     <delete>
+     <delete failonerror="false">
        <fileset dir="." includes="**/*.jar"/>
      </delete>
   </target>

Modified: lucene/dev/trunk/solr/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/build.xml?rev=1395518&r1=1395517&r2=1395518&view=diff
==============================================================================
--- lucene/dev/trunk/solr/build.xml (original)
+++ lucene/dev/trunk/solr/build.xml Mon Oct  8 11:36:41 2012
@@ -675,12 +675,9 @@
                          tofile="${analysis.conf.dest}/stopwords_tr.txt"/>
   </target>
 
-  <!-- TODO: in the future, we don't need to actually put
-       jars in the lib/ folders, but can just put in classpath.
-       only packaging tasks really need that (and could do it
-       under build/ directories) -->
+  <!-- NOTE: not really useful anymore -->
   <target name="clean-jars" description="Clean local jars">
-     <delete>
+     <delete failonerror="false">
        <fileset dir="." includes="**/*.jar"/>
      </delete>
   </target>