PR: MPSCM-69

Submitted by: Emmanuel Venisse
SCMURL page is now referencing the one in the scm project (We'll need to finish to update dependencies before to be able to use all the providers).

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@344012 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2005-11-14 00:33:45 +00:00
parent 3f84529189
commit 6d83ff61fa
2 changed files with 1 additions and 103 deletions

View File

@ -38,7 +38,7 @@
<item href="/releasing.html" name="Making Releases"/>
</menu>
<menu name="Reference">
<item href="/scmurl.html" name="SCM URL Format"/>
<item href="http://maven.apache.org/scm/scm-url-format.html" name="SCM URL Format"/>
<item href="/goals.html" name="Goals"/>
<item href="/properties.html" name="Properties"/>
</menu>

View File

@ -1,102 +0,0 @@
<?xml version="1.0"?>
<!--
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<document>
<properties>
<title>SCM URL Format</title>
<author email="brett@apache.org">Brett Porter</author>
</properties>
<!-- TODO: move to SCM documentation -->
<body>
<section name="SCM URL Format">
<p>
The SCM URL is used to provide any necessary information to connect to your
source control system. It is much like a JDBC connection URL.
</p>
<p>
The format is as follows:
</p>
<source>scm:&lt;provider&gt;[:&lt;provider specific connection string&gt;]</source>
<p>
The available providers and their particular connection strings are listed below.
</p>
<subsection name="CVS">
<p>
The full connection string for CVS is as follows:
</p>
<source>scm:cvs:&lt;protocol&gt;[:&lt;host&gt;]:&lt;CVS root&gt;:&lt;CVS module&gt;</source>
<p>
For example:
</p>
<source>
scm:cvs:pserver:anoncvs@cvs.apache.org:/cvs/root:module
scm:cvs:ext:username@cvs.apache.org:/cvs/root:module
scm:cvs:local:/cvs/root:module</source>
</subsection>
<subsection name="Subversion">
<p>
The full connection string for Subversion is as follows:
</p>
<source>scm:svn:&lt;url&gt;</source>
<p>
For example:
</p>
<source>
scm:svn:file:///svn/root/module
scm:svn:http://svn.apache.org/svn/root/module
scm:svn:https://username@svn.apache.org/svn/root/module</source>
</subsection>
<subsection name="StarTeam">
<p>
The full connection string for StarTeam is as follows:
</p>
<source>scm:starteam:username:password@hostName:endpoint/projectName/viewName/folderHierarchy</source>
<p>
<code>maven.scm.username</code> and <code>maven.scm.password</code>
are the prefer way to store authentication information.
</p>
<p>
For example:
</p>
<source>
scm:starteam:username:password@hostname:23456/project/view/folder1/folder2
scm:starteam:username@hostname:23456/project/view/folder
scm:starteam:hostname:23456/project/view/folder
</source>
</subsection>
<subsection name="Clearcase">
<p>
The full connection string for Clearcase is as follows:
</p>
<source>scm:clearcase:</source>
<p>
There is no need for additional configuration as it relies on the correct installation of a ClearCase binary on your system.
</p>
</subsection>
</section>
</body>
</document>