better error reporting

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2004-05-07 22:58:19 +00:00
parent c991116c1a
commit 262cc4b4ad

View File

@ -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>