RE: Custom task invoking other tasks

2006-08-10 Thread Tzabari, Gili
Many thanks! Gili -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 6:28 PM To: Ant Users List Subject: Re: Custom task invoking other tasks Hello Gili, you can construct your Java task instance in two ways : a) for Ant

Custom task invoking other tasks

2006-08-09 Thread Tzabari, Gili
hanks, Gili

RE: Custom Task that exports a property

2006-08-09 Thread Tzabari, Gili
Sorry but how do I invoke the task from within my custom task? You guys said to use but I'm not clear on how to do this using the programmatic API (as opposed to embedding code in the build.xml file). Thanks, Gili -Original Message- From: Rebhan, Gilbert [mailto:[

RE: Custom Task that exports a property

2006-08-08 Thread Tzabari, Gili
Actually I think I was looking for project.setNewProperty() which I just ran into now :) I guess one uses AntCallback for chaining calls? Thanks, Gili -Original Message- From: Chun Ji [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 08, 2006 3:10 PM To: Ant Users List Subject: RE

Custom Task that exports a property

2006-08-08 Thread Tzabari, Gili
solve my problem. Thank you, Gili - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: FileSet for paths with spaces

2006-08-08 Thread Tzabari, Gili
Thanks Dominique. Is it possible to amend http://ant.apache.org/manual/CoreTypes/fileset.html to discuss this? I am expecting a short note that recommends using nested tags if your path contains spaces. I can open a BugZilla issue if necessary. Thank you, Gili -Original Message

FileSet for paths with spaces

2006-08-08 Thread Tzabari, Gili
Hi, How can one use against a path with spaces in it? I'd like to do something like this: But FileSet's "includes" thinks the space separates multiple tokens and so it defines includes as ["c:/Documents", "and", "Settings/username

won't use RSA

2005-02-17 Thread Gili
can guess, I am doing this in response to http://today.java.net/pub/n/SHA-1Broken Gili - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RFE: Ability to specify compression level for task

2005-02-02 Thread Gili
The user gets to specify a compression level from 0 to 9 and this maps to JarOutputStream.setLevel() which also takes input from 0 to 9. Currently there is no way to modify the compression level. Gili - To unsubscribe

Re: conditional ?

2004-12-02 Thread Gili
In the example you just gave, what happens if "bar" is define to "true" before the target "foo" is run? According to what you said, the dependencies "x, y, z" will be run and then "foo" will discover "bar" is set, so its body w

Re: conditional ?

2004-12-02 Thread Gili
That is very good news. So you are saying: 1) All "depends" are executed 2) "Unless" is evaluated 3) If "Unless" is false, the actual target is executed. Correct? Thanks, Gili On Thu, 2 Dec 2004 10:45:12 -0800 (PST), Matt Benson wrote: >-

Re: conditional ?

2004-12-02 Thread Gili
unless" stage). At least, that's my interpretation. Am I wrong? Gili On Thu, 02 Dec 2004 17:24:22 +0100, Stefan Bodewig wrote: >On Thu, 02 Dec 2004, Gili <[EMAIL PROTECTED]> wrote: > >> Ok, that I understand but there is the further problem that >> I need the to

Re: conditional ?

2004-12-02 Thread Gili
t the to be invoked *before* evaluating ódependsó. Gili On Thu, 02 Dec 2004 09:28:38 +0100, Stefan Bodewig wrote: >On Thu, 02 Dec 2004, Gili <[EMAIL PROTECTED]> wrote: > >> How do I specify an Ant script such that the 2nd >> tag is only evaluated after target A r

conditional ?

2004-12-01 Thread Gili
try running the Ant script it throws an exception on the 2nd tag complaining that the srcfile "fileA.out" does not exist. How do I specify an Ant script such that the 2nd tag is only evaluated after target A runs? Thank you, Gili --