o just starting to testing.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112884 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jvanzyl
2003-02-10 22:28:27 +00:00
parent a32be0ef9a
commit 56e1e52bf0

View File

@@ -44,7 +44,9 @@
-->
<goal name="convert-snapshots">
<r:convert-snapshot-dependencies transformations="transformations"/>
<r:convert-snapshot-dependencies
transformer="transformer"
transformations="transformations"/>
<i:ask
question="There are ${size(transformations)} snapshot dependencies, would you like to update them to use timestamped versions?"
@@ -54,13 +56,19 @@
<j:if test="${answer == 'yes'}">
<j:forEach var="transformation" items="${transformations}"/>
<!-- Display transformation info. Needs to be consumable by a GUI. -->
<i:ask
question="Do you want to update this dependency?"
answer="answer"
default="yes"/>
<j:if test=${answer == 'yes'}">
<!-- Change the node. -->
<r:transform transformation="${transformation}"/>
</j:if>
</j:forEach>
@@ -71,6 +79,8 @@
default="yes"/>
<j:if test=${answer == 'yes'}">
<!-- Write out the pom. -->
<r:write-pom/>
</j:if>
</j:if>