I guess that if you're asking, it's because <ant:fail> doesn't work?

-Vincent

> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: 15 October 2003 16:04
> To: [EMAIL PROTECTED]
> Subject: How to fail inside a maven plugin
> 
> Hi there,
> 
> How to fail inside a maven plugin ?
> 
> example:
> 
>       <goal name="init">
> 
>               <j:set var="error">false</j:set>
>               <j:if test="${class.dir == null}">
>                       <ant:echo message="property 'class.dir' not
present"/>
>                               <j:set var="error">true</j:set>
>               </j:if>
>               <j:if test="${error == 'true'}">
>                       <ant:echo message="Missing properties !"/>
>                       FAIL HERE
>               </j:if>
>       ...
>       </goal>
> 
> Thx,
> -emmanuel
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to