mirror of https://github.com/apache/lucene.git
33 lines
747 B
XML
33 lines
747 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="lucli" default="jar">
|
|
|
|
<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"/>
|
|
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
<target name="jar" depends="compile" description="Create JAR">
|
|
<jarify>
|
|
<manifest-attributes>
|
|
<attribute name="Main-Class" value="lucli.Lucli" />
|
|
<attribute name="Class-Path" value="lib/jline.jar lib/lucene.jar" />
|
|
</manifest-attributes>
|
|
</jarify>
|
|
</target>
|
|
</project>
|