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:
parent
3f84529189
commit
6d83ff61fa
@ -38,7 +38,7 @@
|
|||||||
<item href="/releasing.html" name="Making Releases"/>
|
<item href="/releasing.html" name="Making Releases"/>
|
||||||
</menu>
|
</menu>
|
||||||
<menu name="Reference">
|
<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="/goals.html" name="Goals"/>
|
||||||
<item href="/properties.html" name="Properties"/>
|
<item href="/properties.html" name="Properties"/>
|
||||||
</menu>
|
</menu>
|
||||||
|
|||||||
@ -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:<provider>[:<provider specific connection string>]</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:<protocol>[:<host>]:<CVS root>:<CVS module></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:<url></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>
|
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user