You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2013/09/10 20:45:48 UTC

svn commit: r1521582 - /maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java

Author: rfscholte
Date: Tue Sep 10 18:45:47 2013
New Revision: 1521582

URL: http://svn.apache.org/r1521582
Log:
[MDEPLOY-145] Documentation does not list layouts

Modified:
    maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java

Modified: maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java?rev=1521582&r1=1521581&r2=1521582&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java (original)
+++ maven/plugins/trunk/maven-deploy-plugin/src/main/java/org/apache/maven/plugin/deploy/DeployMojo.java Tue Sep 10 18:45:47 2013
@@ -92,6 +92,16 @@ public class DeployMojo
      * than those specified in <distributionManagement> ).
      * <br/>
      * Format: id::layout::url
+     * 
+     * <dl>
+     *   <dt>id</dt>
+     *   <dd>The id can be used to pick up the correct credentials from the settings.xml</dd>
+     *   <dt>layout</dt>
+     *   <dd>Either <code>default</code> for the Maven2 layout or <code>legacy</code> for the Maven1 layout. 
+     *       Maven3 also uses the <code>default</code> layout.</dd>
+     *   <dt>url</dt>
+     *   <dd>The location of the repository</dd>
+     * </dl>
      */
     @Parameter( property = "altDeploymentRepository" )
     private String altDeploymentRepository;