mirror of
https://github.com/apache/lucene.git
synced 2025-02-08 02:58:58 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1300439 13f79535-47bb-0310-9956-ffa450edef68
34 lines
913 B
XML
34 lines
913 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" />
|
|
|
|
<path id="additional.dependencies">
|
|
<fileset dir="lib" includes="*.jar"/>
|
|
</path>
|
|
|
|
<pathconvert property="project.classpath"
|
|
targetos="unix"
|
|
refid="additional.dependencies"
|
|
/>
|
|
|
|
<import file="../../lucene/contrib/contrib-build.xml"/>
|
|
|
|
<path id="classpath">
|
|
<path refid="base.classpath"/>
|
|
<pathelement path="${queries.jar}" />
|
|
</path>
|
|
|
|
<path id="test.classpath">
|
|
<path refid="test.base.classpath" />
|
|
<pathelement path="src/test-files" />
|
|
</path>
|
|
|
|
<target name="compile-core" depends="jar-queries,common.compile-core" />
|
|
</project>
|