adammurdoch 02/03/25 18:17:06
Modified: proposal/myrmidon build.xml antlib.xml
Added: proposal/myrmidon/src/manifest empty-manifest.mf
Log:
Changed the build to pick up manifest files for antlibs out of src/manifest.
Revision Changes Path
1.90 +1 -1 jakarta-ant/proposal/myrmidon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/build.xml,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- build.xml 23 Mar 2002 03:36:46 -0000 1.89
+++ build.xml 26 Mar 2002 02:17:05 -0000 1.90
@@ -620,7 +620,7 @@
</junit>
</target>
- <target name="test" if="test.failed" depends="run-tests">
+ <target name="test" if="test.failed" depends="run-tests"
description="Runs the unit tests">
<fail> - One or more tests failed.</fail>
</target>
1.9 +8 -0 jakarta-ant/proposal/myrmidon/antlib.xml
Index: antlib.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/antlib.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- antlib.xml 23 Mar 2002 03:36:46 -0000 1.8
+++ antlib.xml 26 Mar 2002 02:17:05 -0000 1.9
@@ -80,11 +80,19 @@
</fileset>
<!-- antdoc docsDestDir="${gen.dir}/docs"/-->
</antlib-descriptor>
+
+ <!-- Manifest -->
+ <copy todir="${gen.dir}">
+ <fileset dir="src/manifest"
includes="${antlib.name}-manifest.mf" />
+ </copy>
+ <copy file="src/manifest/empty-manifest.mf"
tofile="${gen.dir}/${antlib.name}-manifest.mf"/>
+
</target>
<!-- Generate an "atl" jar file for this antlib. -->
<target name="antlib-jar" depends="antlib-descriptors">
<antlib-jar jarfile="${build.lib}/${antlib.name}.atl"
+ manifest="${gen.dir}/${antlib.name}-manifest.mf"
descriptor="${gen.dir}/${antlib.descriptor}"
rolesDescriptor="${gen.dir}/${antlib.role.descriptor}">
<fileset dir="${build.classes}">
1.1
jakarta-ant/proposal/myrmidon/src/manifest/empty-manifest.mf
Index: empty-manifest.mf
===================================================================
Manifest-version: 1.0
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>