jon 01/08/21 15:58:38
Modified: jjar build.xml
Log:
fixed the MANIFEST.MF so that the @name@ is replaced properly
Revision Changes Path
1.4 +6 -3 jakarta-commons-sandbox/jjar/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/jjar/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 2001/08/21 22:44:00 1.3
+++ build.xml 2001/08/21 22:58:37 1.4
@@ -1,7 +1,7 @@
<project name="Jakarta Jar Archive Respository" default="jar" basedir=".">
<!--
- $Id: build.xml,v 1.3 2001/08/21 22:44:00 jon Exp $
+ $Id: build.xml,v 1.4 2001/08/21 22:58:37 jon Exp $
-->
<!-- ========== Initialize Properties ===================================== -->
@@ -99,6 +99,9 @@
<mkdir dir="${build.home}/src"/>
<mkdir dir="${build.home}/conf"/>
<mkdir dir="${build.home}/tests"/>
+ <copy file="${conf.home}/MANIFEST.MF"
+ tofile="${build.home}/conf/MANIFEST.MF"
+ filtering="yes"/>
</target>
<target name="static" depends="prepare"
@@ -160,7 +163,7 @@
<jar jarfile="${component.name}.jar"
basedir="${build.home}/classes"
- manifest="${source.home}/conf/MANIFEST.MF" />
+ manifest="${build.home}/conf/MANIFEST.MF" />
</target>
<target name="dist" depends="compile,javadoc"
@@ -175,7 +178,7 @@
<jar jarfile="${dist.home}/${component.name}.jar"
basedir="${build.home}/classes"
- manifest="${source.home}/conf/MANIFEST.MF"/>
+ manifest="${build.home}/conf/MANIFEST.MF"/>
</target>