- Made ant compile-core and build-contrib run again

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@656110 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2008-05-14 05:29:57 +00:00
parent 6a8bef8c74
commit b182881092
1 changed files with 6 additions and 10 deletions

View File

@ -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>