modified build file to pick up the proper manifest file. more work is needed to have the manifest pick up the right Lucene JAR name though

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@381095 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2006-02-26 14:24:54 +00:00
parent 01db0edff5
commit 31a7b1987a
1 changed files with 6 additions and 5 deletions

View File

@ -18,12 +18,13 @@
<property name="src.dir" location="src"/> <property name="src.dir" location="src"/>
<target name="dist" depends="compile" description="Create JAR">
<jar jarfile="${dist.dir}/${dist.name}.jar" <import file="../contrib-build.xml"/>
basedir="${build.dir}/classes"
<target name="jar" depends="compile" description="Create JAR">
<jar jarfile="${build.dir}/${final.name}.jar"
basedir="${build.dir}/classes/java"
manifest="META-INF/MANIFEST.MF" manifest="META-INF/MANIFEST.MF"
/> />
</target> </target>
<import file="../contrib-build.xml"/>
</project> </project>