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:57 UTC

svn commit: r656110 - /lucene/java/trunk/contrib/highlighter/build.xml

Author: otis
Date: Tue May 13 22:29:57 2008
New Revision: 656110

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

Modified:
    lucene/java/trunk/contrib/highlighter/build.xml

Modified: lucene/java/trunk/contrib/highlighter/build.xml
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/highlighter/build.xml?rev=656110&r1=656109&r2=656110&view=diff
==============================================================================
--- lucene/java/trunk/contrib/highlighter/build.xml (original)
+++ lucene/java/trunk/contrib/highlighter/build.xml Tue May 13 22:29:57 2008
@@ -20,29 +20,25 @@
 <project name="highlighter" default="default">
 
   <description>
-	Hits highlighter
+    Hits highlighter
   </description>
 
   <import file="../contrib-build.xml"/>
 
   <property name="memory.jar" location="${common.dir}/build/contrib/memory/lucene-memory-${version}.jar"/>
+  <available property="memory.jar.present" type="file" file="${memory.jar}"/>
 
   <path id="classpath">
-   <pathelement path="${lucene.jar}"/>
-   <pathelement path="${memory.jar}"/>
-   <pathelement path="${project.classpath}"/>
+    <pathelement path="${lucene.jar}"/>
+    <pathelement path="${memory.jar}"/>
+    <pathelement path="${project.classpath}"/>
   </path>
 
-
-  <target name="buildHighlighter" depends="build-memory,default" />
-  <available property="memory.jar.present" type="file" file="${memory.jar}"/>
   <target name="compile-core" depends="build-memory, common.compile-core" />
 
   <target name="build-memory" unless="memory.jar.present">
     <echo>Highlighter building dependency ${memory.jar}</echo>
-    <ant antfile="../memory/build.xml" target="default" inheritall="false"/>
+    <ant antfile="../memory/build.xml" target="default" inheritall="true" dir="../memory" />
   </target>
 
-
 </project>
-