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 ot...@apache.org on 2006/11/28 21:33:01 UTC

svn commit: r480191 - in /lucene/java/trunk: CHANGES.txt build.xml

Author: otis
Date: Tue Nov 28 12:33:00 2006
New Revision: 480191

URL: http://svn.apache.org/viewvc?view=rev&rev=480191
Log:
- LUCENE-717: Avoid build failure when (unused) lib directory does not exist

Modified:
    lucene/java/trunk/CHANGES.txt
    lucene/java/trunk/build.xml

Modified: lucene/java/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/java/trunk/CHANGES.txt?view=diff&rev=480191&r1=480190&r2=480191
==============================================================================
--- lucene/java/trunk/CHANGES.txt (original)
+++ lucene/java/trunk/CHANGES.txt Tue Nov 28 12:33:00 2006
@@ -223,6 +223,9 @@
     detrimental to performance and memory use.
     (Oliver Hutchison via Otis Gospodnetic)
 
+23. LUCENE-717: Fixed build.xml not to fail when there is no lib dir.
+    (Doron Cohen via Otis Gospodnetic)
+
 Optimizations
 
   1. LUCENE-586: TermDocs.skipTo() is now more efficient for

Modified: lucene/java/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/java/trunk/build.xml?view=diff&rev=480191&r1=480190&r2=480191
==============================================================================
--- lucene/java/trunk/build.xml (original)
+++ lucene/java/trunk/build.xml Tue Nov 28 12:33:00 2006
@@ -32,9 +32,6 @@
     <pathelement location="${build.dir}/classes/test"/>
     <pathelement location="${build.dir}/classes/java"/>
     <pathelement location="${build.dir}/classes/demo"/>
-    <fileset dir="lib">
-      <include name="*.jar"/>
-    </fileset>
     <pathelement path="${java.class.path}"/>
   </path>