mirror of https://github.com/apache/lucene.git
30 lines
862 B
XML
30 lines
862 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="xml-query-parser" default="default">
|
|
|
|
<description>
|
|
XML query parser
|
|
</description>
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
<property name="queries.jar" location="${common.dir}/build/contrib/queries/lucene-queries-${version}.jar"/>
|
|
<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}"/>
|
|
</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"/>
|
|
</target>
|
|
|
|
|
|
</project>
|