Re: Only the fist tag is executed

2009-01-28 Thread Gabor Maghera
When you are doing the runs where only init runs, do you invoke ant without any arguments? Init is your default target, as defined here: If you want to execute the full chain, run "ant copy". That copy target will call the other ones as defined in the depends attribute of the targets. You

Re: AW: Cache test scripts?

2008-08-28 Thread Gabor Maghera
The type of caching you mention is done at the OS level through temporal page caching. Gabor On Thu, Aug 28, 2008 at 2:07 PM, David W <[EMAIL PROTECTED]> wrote: > I was wondering if Ant could save my "build.xml" so that Ant does not need > to load the xml file again if I want to excute the same

Re: Pipeline in exec-task

2008-07-01 Thread Gabor Maghera
If you're using some flavor of the UNIX shell you can append " 2>&1>/dev/null" to the executed command in order to suppress output (at the OS level). Gabor On Tue, Jul 1, 2008 at 5:13 PM, jantje <[EMAIL PROTECTED]> wrote: > > > A second question about : > > Is it possible not to have output to t

Re: Storing all libs in SCM?

2008-06-03 Thread Gabor Maghera
As far as slashes go (and colon or semicolon for classpaths), use the path syntax that you are comfortable with. Ant will do the platform specific translation for you. But I'd stick with relative paths, as Ant will not translate something like C: from Windows into / on UNIX. Cheers, Gabor On Tu