Author: carlos
Date: Mon Nov 21 15:04:57 2005
New Revision: 348010

URL: http://svn.apache.org/viewcvs?rev=348010&view=rev
Log:
Fixed typos and updated server configuration

Modified:
    maven/site/trunk/src/site/apt/guides/mini/guide-deploy-ssh-external.apt

Modified: 
maven/site/trunk/src/site/apt/guides/mini/guide-deploy-ssh-external.apt
URL: 
http://svn.apache.org/viewcvs/maven/site/trunk/src/site/apt/guides/mini/guide-deploy-ssh-external.apt?rev=348010&r1=348009&r2=348010&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-deploy-ssh-external.apt 
(original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-deploy-ssh-external.apt Mon 
Nov 21 15:04:57 2005
@@ -8,9 +8,9 @@
 
 Guide to deploying with an external SSH command
 
- In order to deploy artifacts using FTP you must first specify the use of an 
FTP server in the
+ In order to deploy artifacts using SSH you must first specify the use of an 
SSH server in the
  <<distributionManagement>> element of your POM as well as specifying an 
<<<extension>>> in your
- <<<build>>> element which will pull in the FTP artifacts required to deploy 
with FTP:
+ <<<build>>> element which will pull in the SSH artifacts required to deploy 
with SSH:
 
 +----+
 
@@ -69,10 +69,12 @@
   <servers>
     <server>
       <id>ssh-repository</id>
+      <username>your username in the remote system if different from 
local</username>
+      <privateKey>/path/to/your/private/key</privateKey>
       <configuration>
         <sshExecutable>plink</sshExecutable>
         <scpExecutable>pscp</scpExecutable>
-        <privateKey></privateKey>
+        <sshArgs>other arguments you may need</sshArgs>
       </configuration>
     </server>
   </servers>


Reply via email to