2004-01-05 12:20:42 -05:00
|
|
|
<?xml version="1.0"?>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2006-11-21 15:54:06 -05:00
|
|
|
<project name="lucli" default="jar">
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<description>
|
|
|
|
Lucene Command Line Interface
|
|
|
|
</description>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<path id="additional.dependencies">
|
2005-03-23 18:42:23 -05:00
|
|
|
<pathelement location="lib/jline.jar"/>
|
2004-01-05 12:20:42 -05:00
|
|
|
</path>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<pathconvert property="project.classpath"
|
|
|
|
targetos="unix"
|
|
|
|
refid="additional.dependencies"
|
|
|
|
/>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<property name="src.dir" location="src"/>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2006-02-26 09:24:54 -05:00
|
|
|
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
|
|
|
|
<target name="jar" depends="compile" description="Create JAR">
|
|
|
|
<jar jarfile="${build.dir}/${final.name}.jar"
|
|
|
|
basedir="${build.dir}/classes/java"
|
2005-01-23 06:12:51 -05:00
|
|
|
manifest="META-INF/MANIFEST.MF"
|
|
|
|
/>
|
|
|
|
</target>
|
2003-12-10 21:07:45 -05:00
|
|
|
</project>
|