On Thursday 27 March 2008 Luca Ferrari's cat, walking on the keyboard, wrote:
> Hi all,
> I've got the following task in my ant build file:
>
> description="Copies all the jars this project depdends on contained in
> ${src.lib.dir}" if="${src.lib.dir}">
>
>
>
if="${src.lib.dir}">
should be if="src.lib.dir"
as the if attribute uses the presence or absence of the property and
not on the value of the property.
also, you may need to do **/*.jar instead of "*.jar" to get jars in
sub-directories.
Peer
On Thu, Mar 27, 2008 at 12:48 PM, Luca Ferrari <[EMAIL
Hi all,
I've got the following task in my ant build file:
the idea is to copy all the jars in the src-lib file directory to the
destination directory. ${src.lib.dir} poi
Hasan [mailto:[EMAIL PROTECTED]
> Gesendet: Mittwoch, 12. März 2008 04:51
> An: user@ant.apache.org
> Betreff: problem with copy task
>
> Hi
> I am trying to copy some files and if the file exists with different
> content(in the destination area) then copy task doesn't
&g
Hi
I am trying to copy some files and if the file exists with different
content(in the destination area) then copy task doesn't upload the file
again. I don't want to use the overwrite parameter because there are lots
of files and I don't want to overwrite all the files again. Just want to
know how