You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/04/10 15:58:27 UTC

svn commit: r763933 - /maven/site/trunk/src/site/apt/developers/committer-settings.apt

Author: bentmann
Date: Fri Apr 10 13:58:27 2009
New Revision: 763933

URL: http://svn.apache.org/viewvc?rev=763933&view=rev
Log:
o Clarified usage of SSH vs SVN credentials
o Added server entry for "stagingSite" which is the magic repo id used by site:stage-deploy and required to pick up proper username

Modified:
    maven/site/trunk/src/site/apt/developers/committer-settings.apt

Modified: maven/site/trunk/src/site/apt/developers/committer-settings.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/developers/committer-settings.apt?rev=763933&r1=763932&r2=763933&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/developers/committer-settings.apt (original)
+++ maven/site/trunk/src/site/apt/developers/committer-settings.apt Fri Apr 10 13:58:27 2009
@@ -33,7 +33,8 @@
 Enable Apache Servers
 
  Maven uses several servers configuration to deploy snapshots, releases and documentation on the Apache servers.
- You need to tell to Maven what your Apache username is.
+ You need to tell to Maven what your Apache username is. Please note that some servers use your SVN credentials
+ while others use your SSH credentials.
 
 +-----+
 <settings>
@@ -42,25 +43,32 @@
     <!-- To publish a snapshot of some part of Maven -->
     <server>
       <id>apache.snapshots.https</id>
-      <username> <!-- YOUR APACHE USERNAME --> </username>
-      <password> <!-- YOUR APACHE PASSWORD --> </password>
+      <username> <!-- YOUR APACHE SVN USERNAME --> </username>
+      <password> <!-- YOUR APACHE SVN PASSWORD --> </password>
     </server>
     <!-- To publish a website of some part of Maven -->
     <server>
       <id>apache.website</id>
-      <username> <!-- YOUR APACHE USERNAME --> </username>
+      <username> <!-- YOUR APACHE SSH USERNAME --> </username>
       <filePermissions>664</filePermissions>
       <directoryPermissions>775</directoryPermissions>
     </server>
     <!-- To stage a release of some part of Maven -->
     <server>
       <id>apache.releases.https</id>
-      <username> <!-- YOUR APACHE USERNAME --> </username>
-      <password> <!-- YOUR APACHE PASSWORD --> </password>
+      <username> <!-- YOUR APACHE SVN USERNAME --> </username>
+      <password> <!-- YOUR APACHE SVN PASSWORD --> </password>
+    </server>
+    <!-- To stage a website of some part of Maven -->
+    <server>
+      <id>stagingSite</id> <!-- must match hard-coded repository identifier in site:stage-deploy -->
+      <username> <!-- YOUR APACHE SSH USERNAME --> </username>
+      <filePermissions>664</filePermissions>
+      <directoryPermissions>775</directoryPermissions>
     </server>
     ...
   </servers>
 </settings>
 +-----+
 
- You also need to be a member of the group <<<apcvs>>> and <<<maven>>> on people.apache.org.
+ You also need to be a member of the group <<<apcvs>>> and <<<maven>>> on <<<people.apache.org>>>.