scm url incorrect in pom.xml in maven-2.0.x branch
--------------------------------------------------
Key: MNG-1894
URL: http://jira.codehaus.org/browse/MNG-1894
Project: Maven 2
Type: Bug
Versions: 2.0.2
Environment: n/a
Reporter: Mark Chesney
The SCM URL's in
https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x/pom.xml
are incorrect:
<?xml version="1.0" encoding="UTF-8"?>
<pom>
...
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.2-SNAPSHOT</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.2-SNAPSHOT</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/maven/components/tags/maven-2.0.2-SNAPSHOT</url>
</scm>
...
<pom>
It seems like the correct SCM URLs would be:
<?xml version="1.0" encoding="UTF-8"?>
<pom>
...
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/maven/components/branches/maven-2.0.x</url>
</scm>
...
<pom>
I am unable to build the maven-2.0.x branch in continuum 1.0.2. I get the
following build error after adding
https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x/pom.xml:
Provider message: The svn command failed.
Command output:
-------------------------------------------------------------------------------
svn: URL
'http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.2-SNAPSHOT'
doesn't exist
-------------------------------------------------------------------------------
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]