Re: AW: Jar and duplicate=preserve

2010-02-26 Thread Matt Benson
liche Nachricht- Von: Matt Benson [mailto:gudnabr...@gmail.com] Gesendet: Freitag, 26. Februar 2010 16:29 An: Ant Users List Betreff: Re: Jar and duplicate=preserve I think duplicate="preserve" actually implies that both entries are retained, per the ability of the format to handle t

Re: Jar and duplicate=preserve

2010-02-26 Thread Stefan Bodewig
On 2010-02-26, Knuplesch, Juergen wrote: > I do the following to get some special files into a jarfile (Applet): > > > This means that if your fileset contains several files of the same name, only one would be added to your jar. I wouldn't hope that you've managed to have two files

AW: Jar and duplicate=preserve

2010-02-26 Thread Knuplesch, Juergen
on debugging and trying. Juergen -- Jürgen Knupleschwww.icongmbh.de icon Sy -Ursprüngliche Nachricht- Von: Matt Benson [mailto:gudnabr...@gmail.com] Gesendet: Freitag, 26. Februar 2010 16:29 An: Ant Users List Betreff: Re: Jar and duplicate=preserve I think

Re: Jar and duplicate=preserve

2010-02-26 Thread Matt Benson
I think duplicate="preserve" actually implies that both entries are retained, per the ability of the format to handle this seemingly illogical situation. -Matt On Feb 26, 2010, at 9:21 AM, Antoine Levy Lambert wrote: Hello Juergen, my spontaneous answer is that duplicate="preserve" means

Re: Jar and duplicate=preserve

2010-02-26 Thread Antoine Levy Lambert
Hello Juergen, my spontaneous answer is that duplicate="preserve" means that if a jar/zip entry is encountered a second time, the original is preserved, the second instance is not used, and no error message is displayed. This might be in the documentation of the zip task. jar is an extension o

Jar and duplicate=preserve

2010-02-26 Thread Knuplesch, Juergen
Hello, I do the following to get some special files into a jarfile (Applet): There are two files in in both filesets that are added to the jar file. Under Windows the first file is added to the jar in the first jar task and not changed with the second jar task. Under Lin