Re: Pipeline in exec-task

2008-07-02 Thread Upul Godage
Check out the 'output', 'error', 'logError' and other attributes in the exec task to control the output. http://ant.apache.org/manual/CoreTasks/exec.html Upul On Wed, Jul 2, 2008 at 4:12 PM, jantje <[EMAIL PROTECTED]> wrote: > > Ok (yes, I am working in /bin/bash), now I added this line, but it

Re: Best practises for Ant Memory usage

2008-06-20 Thread Upul Godage
Depending on what the Ant script is doing you may need to change the Ant JVM settings. I used to increase the heap memory space when running XDoclet in a large project using the ANT_OPTS environment variable. Otherwise I would get out of memory errors. This page may be useful. http://wiki.apache.o

Re: ant build file

2008-06-18 Thread Upul Godage
You can give a specific build file to Ant by giving the file name with the switch -f. e.g. ant -f myfile.xml So you can have two build files in the same folder and specifically call the required one. If file name is not given then it will look for the file named build.xml. Upul On Thu, Jun 19, 2