Re: To set property on any build status

2010-04-08 Thread Gilbert Rebhan
Original Message Subject: To set property on any build status From: Pooja Ganapathi To: user@ant.apache.org Date: 08.04.2010 14:14 > > hi, > > I need my ant build to sent mails based on success or failure of build. > > In brief, after the build, i want to capture the status

ANT build properties and escaping characters

2010-04-08 Thread Kris Range
Hi, I posted this on another forum and they recommended I ask here. I have some characters that I need to escape in my build.properties file (like äåö). The only option I could find that was close to this was to use escapeunicode so I tried using with the node but that didn't seem to help.

RE: To set property on any build status

2010-04-08 Thread Martin Gainty
setup a log for output parameter for all tasks concatenate (append) results for each task onto log(.properties) if your output is in properties file format e.g. key=value any build.xml will be able to read those property attributes later on e.g. http://ant.apache.org/manual/CoreTasks/p

To set property on any build status

2010-04-08 Thread Pooja Ganapathi
hi, I need my ant build to sent mails based on success or failure of build. In brief, after the build, i want to capture the status of the build as a property, so that based on the property, different emails could be send. Could any one guide me how to acheive this? Note: i don't want Maillogg