Author: ltheussl
Date: Mon Feb 20 15:29:19 2006
New Revision: 379279
URL: http://svn.apache.org/viewcvs?rev=379279&view=rev
Log:
Don't use dots in comparators: doesn't work with maven 1.0
Modified:
maven/maven-1/plugins/trunk/scm/plugin.jelly
Modified: maven/maven-1/plugins/trunk/scm/plugin.jelly
URL:
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/scm/plugin.jelly?rev=379279&r1=379278&r2=379279&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/scm/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/scm/plugin.jelly Mon Feb 20 15:29:19 2006
@@ -329,8 +329,9 @@
<c:release-version version="${version_name}" />
</j:if>
+ <j:set var="testMode" value="${maven.scm.testmode}" />
<j:choose>
- <j:when test="${maven.scm.testmode == 'true'}">
+ <j:when test="${testMode == 'true'}">
<ant:echo> </ant:echo>
<ant:echo> WARNING: maven.scm.testmode is set to 'true'</ant:echo>
<ant:echo> Changes made above will NOT be committed and
tagging the project will be skipped! </ant:echo>