mirror of https://github.com/apache/lucene.git
27 lines
763 B
XML
27 lines
763 B
XML
<?xml version="1.0"?>
|
|
<project name="join" default="default">
|
|
<description>
|
|
Queries and collectors for performing joins
|
|
</description>
|
|
|
|
<property name="build.dir" location="build/" />
|
|
<property name="dist.dir" location="dist/" />
|
|
<property name="maven.dist.dir" location="../dist/maven" />
|
|
|
|
<import file="../../lucene/contrib/contrib-build.xml"/>
|
|
|
|
<path id="classpath">
|
|
<pathelement path="${grouping.jar}"/>
|
|
<path refid="base.classpath"/>
|
|
</path>
|
|
|
|
<path id="run.classpath">
|
|
<path refid="classpath"/>
|
|
<pathelement location="${build.dir}/classes/java"/>
|
|
</path>
|
|
|
|
<target name="init" depends="contrib-build.init,jar-grouping"/>
|
|
|
|
<target name="dist-maven" depends="jar-core,javadocs,contrib-build.dist-maven" />
|
|
</project>
|