mirror of
https://github.com/apache/lucene.git
synced 2025-02-09 03:25:15 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1307563 13f79535-47bb-0310-9956-ffa450edef68
31 lines
806 B
XML
31 lines
806 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/contrib/contrib-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>
|