Thai Ha created SCM-782:
---------------------------
Summary: Maven SCM Client doesn't support parameters <scmVersion>
<scmVersionType>
Key: SCM-782
URL: https://jira.codehaus.org/browse/SCM-782
Project: Maven SCM
Issue Type: Bug
Components: maven-scm-client
Affects Versions: future
Reporter: Thai Ha
Priority: Minor
In the Maven SCM Client code at
http://svn.apache.org/repos/asf/maven/scm/trunk/maven-scm-client/src/main/java/org/apache/maven/scm/client/cli/MavenScmCli.java
there is a check
if ( args.length != 3 ) {
...
return;
}
which prevents entering parameters <scmVersion> <scmVersionType> (positions 4,
5)
Please update it to
if ( args.length < 3 ) {
...
}
to fix the issue. Thanks.
--
This message was sent by Atlassian JIRA
(v6.1.6#6162)