2012-03-26 08:58:58 -04:00
|
|
|
<?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" />
|
|
|
|
|
2012-04-14 22:07:08 -04:00
|
|
|
<import file="../../lucene/module-build.xml"/>
|
2012-03-26 08:58:58 -04:00
|
|
|
|
2012-03-30 14:04:43 -04:00
|
|
|
<path id="spatialjar">
|
|
|
|
<pathelement path="lib/spatial4j-0.2.jar"/>
|
|
|
|
</path>
|
|
|
|
|
2012-03-26 08:58:58 -04:00
|
|
|
<path id="classpath">
|
|
|
|
<path refid="base.classpath"/>
|
2012-03-30 14:04:43 -04:00
|
|
|
<path refid="spatialjar"/>
|
2012-03-26 08:58:58 -04:00
|
|
|
<pathelement path="${queries.jar}" />
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<path id="test.classpath">
|
|
|
|
<path refid="test.base.classpath" />
|
2012-03-30 14:04:43 -04:00
|
|
|
<path refid="spatialjar"/>
|
2012-03-26 08:58:58 -04:00
|
|
|
<pathelement path="src/test-files" />
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<target name="compile-core" depends="jar-queries,common.compile-core" />
|
|
|
|
</project>
|