2006-02-24 19:39:18 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2007-05-30 03:18:29 -04:00
|
|
|
<project name="xml-query-parser" default="default">
|
2006-02-24 19:39:18 -05:00
|
|
|
|
|
|
|
<description>
|
|
|
|
XML query parser
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
|
2007-05-30 03:18:29 -04:00
|
|
|
<property name="queries.jar" location="${common.dir}/build/contrib/queries/lucene-queries-${version}.jar"/>
|
|
|
|
<available property="queries.jar.present" type="file" file="${queries.jar}"/>
|
2006-02-24 19:39:18 -05:00
|
|
|
|
|
|
|
<path id="classpath">
|
|
|
|
<pathelement path="${lucene.jar}"/>
|
|
|
|
<pathelement path="${queries.jar}"/>
|
|
|
|
<pathelement path="${project.classpath}"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
|
2007-05-30 03:18:29 -04:00
|
|
|
<target name="compile-core" depends="build-queries, common.compile-core" />
|
2006-02-24 19:39:18 -05:00
|
|
|
|
2007-05-30 03:18:29 -04:00
|
|
|
<target name="build-queries" unless="queries.jar.present">
|
2006-02-24 19:39:18 -05:00
|
|
|
<echo>XML Parser building dependency ${queries.jar}</echo>
|
|
|
|
<ant antfile="../queries/build.xml" target="default" inheritall="false"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|