mirror of
https://github.com/apache/lucene.git
synced 2025-02-06 18:18:38 +00:00
23d22e4d47
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1151720 13f79535-47bb-0310-9956-ffa450edef68
31 lines
912 B
XML
31 lines
912 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/" />
|
|
<import file="../../lucene/contrib/contrib-build.xml"/>
|
|
|
|
<property name="build.dir" location="build/" />
|
|
<property name="dist.dir" location="dist/" />
|
|
|
|
<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>
|
|
|
|
<property name="build.dir" location="build/" />
|
|
<property name="dist.dir" location="dist/" />
|
|
<property name="maven.dist.dir" location="../dist/maven" />
|
|
|
|
<target name="init" depends="contrib-build.init,jar-grouping"/>
|
|
|
|
<target name="dist-maven" depends="jar-core,javadocs,contrib-build.dist-maven" />
|
|
</project>
|