maven-plugins/artifact/xdocs/protocols.xml
brett 0e59327ad9 PR: MPARTIFACT-22
add scpexe protocol - uses external scp executable


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115673 13f79535-47bb-0310-9956-ffa450edef68
2004-07-06 13:42:25 +00:00

109 lines
3.0 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
/*
* Copyright 2001-2004 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>Protocols</title>
<author email="michal.maczka@dimatics.com">Michal Maczka</author>
</properties>
<body>
<section name="Supported protocols">
<table>
<tr>
<th>Protocol name</th>
<th>URL Prefix</th>
<th>Username</th>
<th>Directory</th>
<th>Password</th>
<th>Group</th>
<th>Private Key</th>
<th>Passphrase</th>
<th>Port</th>
</tr>
<tr>
<td>
<b>SCP</b>
(Secure Copy)
</td>
<td>scp://</td>
<td>Mandatory</td>
<td>Mandatory</td>
<td>Mandatory if private key unless private key is provided</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional (default is 22)</td>
</tr>
<tr>
<td>
<b>SFTP</b>
(Secure FTP)
</td>
<td>sftp://</td>
<td>Mandatory</td>
<td>Mandatory</td>
<td>Mandatory unless private key is provided</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional (default is 22)</td>
</tr>
<tr>
<td><b>FTP</b></td>
<td>ftp://</td>
<td>Mandatory</td>
<td>Mandatory</td>
<td>Mandatory</td>
<td>Not supported</td>
<td>Not supported</td>
<td>Not supported</td>
<td>Optional (default is 21)</td>
</tr>
<tr>
<td><b>FILE</b></td>
<td>file://</td>
<td>Not supported</td>
<td>Mandatory</td>
<td>Not supported</td>
<td>Not supported</td>
<td>Not supported</td>
<td>Not supported</td>
<td>Not supported</td>
</tr>
<tr>
<td>
<b>SCP Executable</b>
(External Secure Copy)
</td>
<td>scpexe://</td>
<td>Mandatory</td>
<td>Mandatory</td>
<td>Mandatory if private key unless private key is provided</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional</td>
<td>Optional (default is 22)</td>
</tr>
</table>
</section>
</body>
</document>