carlos 2004/06/30 13:20:16
Modified: aspectj plugin.jelly
Log:
Output messages to log
Revision Changes Path
1.16 +3 -3 maven-plugins/aspectj/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/plugin.jelly,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- plugin.jelly 30 Jun 2004 20:12:36 -0000 1.15
+++ plugin.jelly 30 Jun 2004 20:20:16 -0000 1.16
@@ -81,7 +81,7 @@
<j:forEach var="artifact" items="${pom.artifacts}">
<j:set var="dep" value="${artifact.dependency}"/>
<j:if test="${dep.getProperty('aspectj.weaveWith')=='true'}">
- <ant:echo>Weaving with: ${dep.artifactId}</ant:echo>
+ <log:info>Weaving with: ${dep.artifactId}</log:info>
<ant:pathelement location="${artifact.path}"/>
</j:if>
</j:forEach>
@@ -92,7 +92,7 @@
<j:forEach var="artifact" items="${pom.artifacts}">
<j:set var="dep" value="${artifact.dependency}"/>
<j:if test="${dep.getProperty('aspectj.weaveInto')=='true'}">
- <ant:echo>Weaving into: ${dep.artifactId}</ant:echo>
+ <log:info>Weaving into: ${dep.artifactId}</log:info>
<ant:pathelement location="${artifact.path}"/>
</j:if>
</j:forEach>
@@ -173,7 +173,7 @@
<j:set var="shouldWeave" value="true"/>
</j:when>
<j:otherwise>
- <echo>No Aspects to weave</echo>
+ <log:info>No Aspects to weave</log:info>
</j:otherwise>
</j:choose>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]