cziegeler 2003/06/24 05:02:41
Modified: src/targets compile-build.xml
Log:
Don't include manifest as a separate file
Revision Changes Path
1.12 +3 -1 cocoon-2.1/src/targets/compile-build.xml
Index: compile-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/compile-build.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- compile-build.xml 13 Jun 2003 10:27:25 -0000 1.11
+++ compile-build.xml 24 Jun 2003 12:02:41 -0000 1.12
@@ -134,7 +134,9 @@
<!-- package the core -->
<target name="package-core" depends="compile-core, block-roles">
<jar jarfile="${build}/${name}.jar" manifest="${java}/Manifest.mf">
- <fileset dir="${build.dest}"/>
+ <fileset dir="${build.dest}">
+ <exclude name="**/Manifest.mf"/>
+ </fileset>
</jar>
</target>