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/03/28 21:56:27 UTC

svn commit: r1306561 - /lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml

Author: rmuir
Date: Wed Mar 28 19:56:27 2012
New Revision: 1306561

URL: http://svn.apache.org/viewvc?rev=1306561&view=rev
Log:
LUCENE-3930: fix bogus classpath

Modified:
    lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml

Modified: lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml?rev=1306561&r1=1306560&r2=1306561&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml (original)
+++ lucene/dev/branches/lucene3930/lucene/contrib/sandbox/build.xml Wed Mar 28 19:56:27 2012
@@ -24,8 +24,8 @@
   <import file="../contrib-build.xml"/>
 
   <path id="classpath">
-    <pathelement path="${lucene-core.jar}"/>
     <pathelement path="lib/jakarta-regexp-1.4.jar"/>
+    <path refid="base.classpath"/>
   </path>
 
 </project>