mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 10:38:40 +00:00
87768c51c6
Added "queries" contrib module for various new query/filter classes. This area is also intended to consolidate existing query classes so have moved a copy of MoreLikeThis into here. Probably need to remove "similarity" module as a result, if no one objects. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@380874 13f79535-47bb-0310-9956-ffa450edef68
29 lines
733 B
XML
29 lines
733 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="xml-query-parser" default="buildParser">
|
|
|
|
<description>
|
|
XML query parser
|
|
</description>
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
<property name="queries.jar" location="../../build/contrib/queries/lucene-queries-${version}.jar"/>
|
|
|
|
<path id="classpath">
|
|
<pathelement path="${lucene.jar}"/>
|
|
<pathelement path="${queries.jar}"/>
|
|
<pathelement path="${project.classpath}"/>
|
|
</path>
|
|
|
|
|
|
<target name="buildParser" depends="buildQueries,default" />
|
|
|
|
<target name="buildQueries" >
|
|
<echo>XML Parser building dependency ${queries.jar}</echo>
|
|
<ant antfile="../queries/build.xml" target="default" inheritall="false"/>
|
|
</target>
|
|
|
|
|
|
</project>
|