RE: How to run an ant target on success/failed build

2008-07-23 Thread p2008
For anyone else who is interested in this presentation, the problem addresses in this thread starts on Slide 34, so jump ahead! http://people.apache.org/~kevj/ossummit/extending-ant.html Rebhan, Gilbert wrote: > > > > -Original Message----- > From: p2008 [mailto:[

Re: AW: How to run an ant target on success/failed build

2008-07-23 Thread p2008
ailLogger.failure.subject=failed > MailLogger.success.subject=successfull > [EMAIL PROTECTED] > [EMAIL PROTECTED] > > Then you will send the output of Ant to the specifies addresses. > > Another strategy (big solution) is using CruiseControl > > > > > > > -- &

RE: How to run an ant target on success/failed build

2008-07-23 Thread p2008
Thanks for this info! It seems the exec listener is the most flexible solution. Not quite as simple as the hooks offered in nant, but it should do the job. Thanks. Rebhan, Gilbert wrote: > > > > -Original Message----- > From: p2008 [mailto:[EMAIL PROTECTED] > Sen

How to run an ant target on success/failed build

2008-07-22 Thread p2008
I need to be able to trigger running a specific ant target when the build succeeds, and another one when it fails. This will be used to send out an email indicating the status of the build. I have done this in the past in nant (.NET) which has a built in property called nant.onsuccess and one ca