Re: Sending options to ANT task? Specifically the -q option to make it quiet

2013-07-03 Thread jimi.hullegard
Thank you for clearing this up, Jan. Although one would think that the ANT task should be able to run in a separate process in order to handle such things. Also thanks for your example code, but I think this short EXEC task is even simpler: /Jimi > -Ursprungli

AW: Sending options to ANT task? Specifically the -q option to make it quiet

2013-07-03 Thread jhm
You cannot reconfigure the logger Ant uses. You have to start a complete new Ant instance. Jan sample: Call via 'ant' Call via 'java'

Sending options to ANT task? Specifically the -q option to make it quiet

2013-07-03 Thread jimi.hullegard
Hi all, I have a build file that in turn calls another build file, using the ANT task (http://ant.apache.org/manual/Tasks/ant.html). However, I want to make that second build file run in "quiet mode", ie just as if I had triggered it from a command line with the "-q" option. How can I do that u