Re: Java task - output defaulting stdout

2006-03-14 Thread Frederic CHALONS
Hi Petar, Do you mean that omitting the output attribute of the java task is equivalent to setting it to "console"? Indeed, I want to take advantage of Ant properties being immutable. However, I did not know the value to use to get default behavior when the user does not set any. I am going to t

Re: Java task - output defaulting stdout

2006-03-14 Thread Petar Tahchiev
On 09/03/06, Frederic CHALONS <[EMAIL PROTECTED]> wrote: > Hi, > > I would like to use a property to set the ouput of the java task. > However when the user did not set that property I want to set it to a value > corresponding to the console. > (same behaviour when no "output" attribute is given).

Java task - output defaulting stdout

2006-03-12 Thread Frederic CHALONS
Hi, I would like to use a property to set the ouput of the java task. However when the user did not set that property I want to set it to a value corresponding to the console. (same behaviour when no "output" attribute is given). What value should I use? "" empty string does not seem to work. Th