You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/02/27 22:39:02 UTC

svn commit: r1294344 - /maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java

Author: hboutemy
Date: Mon Feb 27 21:39:01 2012
New Revision: 1294344

URL: http://svn.apache.org/viewvc?rev=1294344&view=rev
Log:
improved obsolete javadoc (merged from trunk r1290905)

Modified:
    maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java

Modified: maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java?rev=1294344&r1=1294343&r2=1294344&view=diff
==============================================================================
--- maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java (original)
+++ maven/plugins/branches/maven-site-plugin-2.x/src/main/java/org/apache/maven/plugins/site/SiteDeployMojo.java Mon Feb 27 21:39:01 2012
@@ -23,15 +23,13 @@ import org.apache.maven.model.Site;
 import org.apache.maven.plugin.MojoExecutionException;
 
 /**
- * Deploys the generated site using <code>scp</code> or <code>file</code>
- * protocol to the site URL specified in the
+ * Deploys the generated site using <a href="/wagon/">wagon supported
+ * protocols</a> to the site URL specified in the
  * <code>&lt;distributionManagement&gt;</code> section of the POM.
  * <p>
- * For <code>scp</code> protocol, the website files are packaged into zip archive,
- * then the archive is transfered to the remote host, next it is un-archived.
- * This method of deployment should normally be much faster
- * than making a file by file copy.  For <code>file</code> protocol, the files are copied
- * directly to the destination directory.
+ * For <code>scp</code> protocol, the website files are packaged by wagon into zip archive,
+ * then the archive is transfered to the remote host, next it is un-archived which is much faster
+ * than making a file by file copy.
  * </p>
  *
  * @author <a href="mailto:michal@org.codehaus.org">Michal Maczka</a>