2012-02-21 03:10:56 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project name="spatial" default="default">
|
|
|
|
<description>
|
2012-02-29 00:17:39 -05:00
|
|
|
Lucene Spatial
|
2012-02-21 03:10:56 -05:00
|
|
|
</description>
|
|
|
|
|
2012-02-29 00:17:39 -05:00
|
|
|
<property name="build.dir" location="build/" />
|
|
|
|
<property name="dist.dir" location="dist/" />
|
|
|
|
<property name="maven.dist.dir" location="../dist/maven" />
|
2012-02-21 03:10:56 -05:00
|
|
|
|
2012-02-29 00:17:39 -05:00
|
|
|
<path id="additional.dependencies">
|
|
|
|
<fileset dir="lib" includes="*.jar"/>
|
|
|
|
</path>
|
2012-02-21 03:10:56 -05:00
|
|
|
|
2012-02-29 00:17:39 -05:00
|
|
|
<pathconvert property="project.classpath"
|
|
|
|
targetos="unix"
|
|
|
|
refid="additional.dependencies"
|
|
|
|
/>
|
2012-02-21 04:32:53 -05:00
|
|
|
|
2012-02-29 00:17:39 -05:00
|
|
|
<import file="../../lucene/contrib/contrib-build.xml"/>
|
|
|
|
|
|
|
|
<path id="classpath">
|
|
|
|
<path refid="base.classpath"/>
|
|
|
|
<pathelement path="${queries.jar}" />
|
|
|
|
</path>
|
2012-02-21 03:10:56 -05:00
|
|
|
|
2012-02-29 00:17:39 -05:00
|
|
|
<path id="test.classpath">
|
|
|
|
<path refid="test.base.classpath" />
|
|
|
|
<pathelement path="src/test-files" />
|
|
|
|
</path>
|
2012-02-21 03:10:56 -05:00
|
|
|
|
2012-03-13 21:59:57 -04:00
|
|
|
<target name="compile-core" depends="jar-queries,common.compile-core" />
|
2012-02-21 03:10:56 -05:00
|
|
|
</project>
|