o sketching in interactive editing of POM.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112883 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jvanzyl 2003-02-10 22:05:37 +00:00
parent 68fff41e79
commit a32be0ef9a

View File

@ -43,7 +43,37 @@
|
-->
<goal name="convert-snapshots">
<r:convert-snapshot-dependencies transformations="transformations"/>
<i:ask
question="There are ${size(transformations)} snapshot dependencies, would you like to update them to use timestamped versions?"
answer="answer"
default="yes"/>
<j:if test="${answer == 'yes'}">
<j:forEach var="transformation" items="${transformations}"/>
<i:ask
question="Do you want to update this dependency?"
answer="answer"
default="yes"/>
<j:if test=${answer == 'yes'}">
</j:if>
</j:forEach>
<i:ask
question="Would you like the update POM to be written out for the release?"
answer="answer"
default="yes"/>
<j:if test=${answer == 'yes'}">
</j:if>
</j:if>
</goal>
<!--