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 mi...@apache.org on 2009/04/14 23:19:45 UTC

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

Author: mikemccand
Date: Tue Apr 14 21:19:45 2009
New Revision: 764958

URL: http://svn.apache.org/viewvc?rev=764958&view=rev
Log:
LUCENE-1529: do not include trunk's classes when running back compat tests (to properly test jar drop-in-ability)

Modified:
    lucene/java/trunk/build.xml

Modified: lucene/java/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/java/trunk/build.xml?rev=764958&r1=764957&r2=764958&view=diff
==============================================================================
--- lucene/java/trunk/build.xml (original)
+++ lucene/java/trunk/build.xml Tue Apr 14 21:19:45 2009
@@ -96,10 +96,9 @@
   <property name="tag" value="${compatibility.tag}"/>
 	
   <path id="tag.test.classpath">
-    <path refid="demo.classpath"/>
     <path refid="junit-path"/>
-    <pathelement location="${build.dir}/${tag}/classes/test"/>
-  	<pathelement location="${build.dir}/${tag}/${tag}.jar"/>
+    <pathelement location="${build.dir}/classes/demo"/>
+    <pathelement location="${build.dir}/${tag}/${tag}.jar"/>
   </path>
 	
   <path id="tag.junit.classpath">