PR: MPSCM-65
Submitted by: Phil Steitz When pom.repository.connection ends with '/' checkout fails. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@354895 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1f76ad543b
commit
376aedd9e4
@ -107,6 +107,10 @@ public class ScmBean
|
||||
|
||||
if ( repository.getProvider().equals( "svn" ) )
|
||||
{
|
||||
if ( url.endsWith("/") )
|
||||
{
|
||||
repository = scmManager.makeScmRepository( url.substring(0, url.length() - 1 ));
|
||||
}
|
||||
SvnScmProviderRepository svnRepo = (SvnScmProviderRepository) repository.getProviderRepository();
|
||||
|
||||
if ( username != null && username.length() > 0 )
|
||||
|
||||
@ -25,6 +25,7 @@
|
||||
</properties>
|
||||
<body>
|
||||
<release version="1.6-SNAPSHOT" date="in SVN">
|
||||
<action dev="ltheussl" type="fix" issue="MPSCM-65" due-to="Phil Steitz">When pom.repository.connection ends with '/' checkout fails.</action>
|
||||
<action dev="ltheussl" type="fix" issue="MPSCM-57">Re-add changes.xml file to display announcements.</action>
|
||||
<action dev="aheritier" type="update" issue="MPSCM-66">Update to released version of maven-scm.</action>
|
||||
<action dev="brett" type="add" issue="MPSCM-47,MPSCM-54">New scm:checkin goal.</action>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user