2004-01-05 12:20:42 -05:00
|
|
|
<?xml version="1.0"?>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<project name="lucli" default="default">
|
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
|
|
|
|
2005-01-23 06:12:51 -05:00
|
|
|
<target name="dist" depends="compile" description="Create JAR">
|
|
|
|
<jar jarfile="${dist.dir}/${dist.name}.jar"
|
2005-05-01 20:11:11 -04:00
|
|
|
basedir="${build.dir}/classes"
|
2005-01-23 06:12:51 -05:00
|
|
|
manifest="META-INF/MANIFEST.MF"
|
|
|
|
/>
|
|
|
|
</target>
|
|
|
|
|
2005-05-01 20:11:11 -04:00
|
|
|
<import file="../contrib-build.xml"/>
|
2003-12-10 21:07:45 -05:00
|
|
|
</project>
|