lucene/contrib/lucli/build.xml

30 lines
666 B
XML
Raw Normal View History

<?xml version="1.0"?>
<project name="lucli" default="default">
<description>
Lucene Command Line Interface
</description>
<path id="additional.dependencies">
<pathelement location="lib/jline.jar"/>
</path>
<pathconvert property="project.classpath"
targetos="unix"
refid="additional.dependencies"
/>
<property name="src.dir" location="src"/>
<target name="dist" depends="compile" description="Create JAR">
<jar jarfile="${dist.dir}/${dist.name}.jar"
basedir="${build.dir}/classes"
manifest="META-INF/MANIFEST.MF"
/>
</target>
<import file="../contrib-build.xml"/>
</project>