mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 10:38:40 +00:00
84db65bfde
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@158851 13f79535-47bb-0310-9956-ffa450edef68
30 lines
659 B
XML
30 lines
659 B
XML
<?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.classes.dir}"
|
|
manifest="META-INF/MANIFEST.MF"
|
|
/>
|
|
</target>
|
|
|
|
<import file="../common.xml"/>
|
|
</project>
|