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 2008/05/14 07:29:16 UTC

svn commit: r656109 - /lucene/java/trunk/contrib/xml-query-parser/build.xml

Author: otis
Date: Tue May 13 22:29:16 2008
New Revision: 656109

URL: http://svn.apache.org/viewvc?rev=656109&view=rev
Log:
- Made ant compile-core and build-contrib run again

Modified:
    lucene/java/trunk/contrib/xml-query-parser/build.xml

Modified: lucene/java/trunk/contrib/xml-query-parser/build.xml
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/xml-query-parser/build.xml?rev=656109&r1=656108&r2=656109&view=diff
==============================================================================
--- lucene/java/trunk/contrib/xml-query-parser/build.xml (original)
+++ lucene/java/trunk/contrib/xml-query-parser/build.xml Tue May 13 22:29:16 2008
@@ -29,18 +29,17 @@
   <available property="queries.jar.present" type="file" file="${queries.jar}"/>
 
   <path id="classpath">
-   <pathelement path="${lucene.jar}"/>
-   <pathelement path="${queries.jar}"/>
-   <pathelement path="${project.classpath}"/>
+    <pathelement path="${lucene.jar}"/>
+    <pathelement path="${queries.jar}"/>
+    <pathelement path="${project.classpath}"/>
   </path>
 
 
   <target name="compile-core" depends="build-queries, common.compile-core" />
 
   <target name="build-queries" unless="queries.jar.present">
-  	  <echo>XML Parser building dependency ${queries.jar}</echo>
-      <ant antfile="../queries/build.xml" target="default" inheritall="false"/>
+    <echo>XML Parser building dependency ${queries.jar}</echo>
+    <ant antfile="../queries/build.xml" target="default" inheritall="true" dir="../queries" />
   </target>
 
-
 </project>