LUCENE-1276: Fixed contrib highlighter build

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@652471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2008-05-01 10:34:50 +00:00
parent 35c7eb36df
commit afa040e9da
1 changed files with 25 additions and 6 deletions

View File

@ -1,6 +1,23 @@
<?xml version="1.0"?>
<project name="highlighter" default="buildHighlighter">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="highlighter" default="default">
<description>
Hits highlighter
@ -8,7 +25,7 @@
<import file="../contrib-build.xml"/>
<property name="memory.jar" location="../../build/contrib/memory/lucene-memory-${version}.jar"/>
<property name="memory.jar" location="${common.dir}/build/contrib/memory/lucene-memory-${version}.jar"/>
<path id="classpath">
<pathelement path="${lucene.jar}"/>
@ -17,11 +34,13 @@
</path>
<target name="buildHighlighter" depends="buildMemory,default" />
<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="buildMemory" >
<echo>Highlighter building dependency ${memory.jar}</echo>
<ant antfile="../memory/build.xml" target="default" inheritall="false"/>
<target name="build-memory" unless="memory.jar.present">
<echo>Highlighter building dependency ${memory.jar}</echo>
<ant antfile="../memory/build.xml" target="default" inheritall="false"/>
</target>