mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 10:38:40 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@151459 13f79535-47bb-0310-9956-ffa450edef68
21 lines
463 B
XML
21 lines
463 B
XML
<?xml version="1.0"?>
|
|
<project name="ant-example" default="index">
|
|
|
|
<description>
|
|
Lucene Ant index example
|
|
</description>
|
|
|
|
<property name="index.base.dir" location="build"/>
|
|
<property name="files.dir" location="src/test"/>
|
|
|
|
<target name="index">
|
|
<mkdir dir="${index.base.dir}"/>
|
|
|
|
<index index="${index.base.dir}/index"
|
|
xmlns="antlib:org.apache.lucene.ant">
|
|
<fileset dir="${files.dir}"/>
|
|
</index>
|
|
</target>
|
|
|
|
</project>
|