mirror of https://github.com/apache/lucene.git
31 lines
797 B
XML
31 lines
797 B
XML
<?xml version="1.0"?>
|
|
<project name="spatial" default="default">
|
|
<description>
|
|
Lucene Spatial
|
|
</description>
|
|
|
|
<property name="build.dir" location="build/" />
|
|
<property name="dist.dir" location="dist/" />
|
|
<property name="maven.dist.dir" location="../dist/maven" />
|
|
|
|
<import file="../../lucene/module-build.xml"/>
|
|
|
|
<path id="spatialjar">
|
|
<pathelement path="lib/spatial4j-0.2.jar"/>
|
|
</path>
|
|
|
|
<path id="classpath">
|
|
<path refid="base.classpath"/>
|
|
<path refid="spatialjar"/>
|
|
<pathelement path="${queries.jar}" />
|
|
</path>
|
|
|
|
<path id="test.classpath">
|
|
<path refid="test.base.classpath" />
|
|
<path refid="spatialjar"/>
|
|
<pathelement path="src/test-files" />
|
|
</path>
|
|
|
|
<target name="compile-core" depends="jar-queries,common.compile-core" />
|
|
</project>
|