vmassol 2004/05/07 15:58:19
Modified: aspectj plugin.jelly
Log:
better error reporting
Revision Changes Path
1.10 +8 -3 maven-plugins/aspectj/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/plugin.jelly,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- plugin.jelly 7 May 2004 19:19:10 -0000 1.9
+++ plugin.jelly 7 May 2004 22:58:19 -0000 1.10
@@ -74,9 +74,14 @@
</j:forEach>
</j:if>
- <j:if test="${(aspectSourcesPresent == 'true') || (aspectLibrariesPresent ==
'true')}">
- <j:set var="shouldWeave" value="true"/>
- </j:if>
+ <j:choose>
+ <j:when test="${(aspectSourcesPresent == 'true') || (aspectLibrariesPresent
== 'true')}">
+ <j:set var="shouldWeave" value="true"/>
+ </j:when>
+ <j:otherwise>
+ <echo>No Aspects to weave</echo>
+ </j:otherwise>
+ </j:choose>
</goal>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]