2011-06-28 17:20:18 -04:00
|
|
|
<?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/" />
|
2011-10-25 17:54:05 -04:00
|
|
|
<property name="maven.dist.dir" location="../dist/maven" />
|
|
|
|
|
|
|
|
<import file="../../lucene/contrib/contrib-build.xml"/>
|
2011-06-28 17:20:18 -04:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2011-07-28 00:02:09 -04:00
|
|
|
<target name="init" depends="contrib-build.init,jar-grouping"/>
|
2011-06-28 17:20:18 -04:00
|
|
|
|
|
|
|
<target name="dist-maven" depends="jar-core,javadocs,contrib-build.dist-maven" />
|
|
|
|
</project>
|