Add log:info to see messages

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112848 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
evenisse
2003-02-06 15:23:03 +00:00
parent 953c62ae71
commit adb183e85c

View File

@@ -36,12 +36,12 @@
<j:set var="lastGoal" value="${goal}"/>
</j:catch>
<j:if test="${ex != null}">
${ex}
<log:info>${ex}</log:info>
</j:if>
</j:otherwise>
</j:choose>
<j:if test="${followOn=='false'}">
Bye !
<log:info>Bye !</log:info>
</j:if>
</j:while>
</goal>
@@ -49,10 +49,12 @@ Bye !
<goal name="console:listGoals" description="List all available goals">
<j:set var="proj" value="${org.apache.commons.jelly.werkz.Project}"/>
<j:forEach var="listGoal" items="${proj.goals}" trim="false">
${listGoal.name}</j:forEach>
<log:info>${listGoal.name}</log:info>
</j:forEach>
</goal>
<goal name="console:help" description="Print the help message.">
<log:info>
The following commands are available:
list - list all available goals
@@ -60,5 +62,6 @@ The following commands are available:
&lt;goalname&gt; - attain a goal
quit - quits the console
</log:info>
</goal>
</project>