This reminds me, how dificult would it be to allow
listeners to be declared in the build.xml file?
It cannot be just a task, but something interpreted
during parsing of the XML file.
<project ..... listener="className" />
or
<project ....>
<listen classname="FQCN">
<classpath idref="..." />
</listen>
...
</project>
What do people think???
Maybe it should be a datatype.
Jose Alberto
> -----Original Message-----
> From: Stefan Bodewig [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 10, 2000 2:20 AM
> To: [EMAIL PROTECTED]
> Subject: Re: capturing javac failing
>
>
> Stuart Barlow <[EMAIL PROTECTED]> wrote:
>
> > I want to send a mail if the javac task fails in my ant based build.
> > Is this possible?
>
> Yes, using a BuildListener, it might be a little bit tricky
> though. Let me see, if Jyve works today, yes:
>
> See
> <http://jakarta.apache.org/jyve-faq/Turbine/screen/DisplayQues
tionAnswer/action/SetAll/project_id/2/faq_id/16/topic_id/196/question_id/741
>
for a start.
You'll probably want to track which task is currently running to see
whether it was a javac task that caused the BuildException if there is
one.
Stefan