Because <jar> extends <zip> this example from the manual should help

  <zip destfile="${dist}/manual.zip">
    <zipfileset dir="htdocs/manual" prefix="docs/user-guide"/>
    <zipfileset dir="." includes="ChangeLog27.txt" 
fullpath="docs/ChangeLog.txt"/>
    <zipfileset src="examples.zip" includes="**/*.html" prefix="docs/examples"/>
  </zip> 
  zips all files in the htdocs/manual directory into the docs/user-guide 
directory in 
  the archive, adds the file ChangeLog27.txt in the current directory as 
  docs/ChangeLog.txt, and includes all the html files in examples.zip under 
  docs/examples. The archive might end up containing the files:
    docs/user-guide/html/index.html
    docs/ChangeLog.txt
    docs/examples/index.html

Jan

>-----Ursprüngliche Nachricht-----
>Von: Barak Yaish [mailto:[EMAIL PROTECTED] 
>Gesendet: Mittwoch, 22. Februar 2006 08:33
>An: user@ant.apache.org
>Betreff: Question regarding the Jar task
>
>Hello all,
> 
>Is it possible using the Jar task to add a file to a specific 
>location in a jar file?
>For example, if there is a jar containing a folder named z 
>inside a folder named x (/x/z). How should I use the Jar task 
>to add some file into the z folder inside the jar file?
> 
>Thanks,
> 
>Barak.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to