zips all files in the htdocs/manual
directory into the docs/user-guide
directory in the archive and includes all the files in any file that matches examples*.zip
, such as all files within examples1.zip
or examples_for_brian.zip
. The same can be achieved with
<zip destfile="${dist}/manual.zip"> <mappedresources> <fileset dir="htdocs/manual"/> <globmapper from="*" to="docs/user-guide/*"/> </mappedresources> <archives> <zips> <fileset dir="." includes="examples*.zip"/> </zips> </archives> </zip>
Read full article from Zip Task
No comments:
Post a Comment