use the buildListener interface.


[EMAIL PROTECTED]



-----Original Message-----
From: Chris Stillwell [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 9:07 AM
To: [EMAIL PROTECTED]
Subject: Is there any onFail type of capability?


I am using the mail task to notify when a build is complete; however, it
doesn't get sent if the build fails.  Is there a way to ensure that the
email is sent regardless of the out come of the build? Here's my build all
target:

  <target name="all" description="Build everything"
          depends="init, compile, jars, javadoc">
    <tstamp>
      <format property="TIME" pattern="hh:mm:ss a"/>
    </tstamp>
    <mail from="newwave@nwvibm00-e1"
          tolist="[EMAIL PROTECTED]"
          subject="NewWave Build ${TODAY}"
          message="NewWave Build ${TODAY} Completed at ${TIME}."
          mailhost="****.****.***">
    </mail>
  </target>

Thanks,

Chris


Reply via email to