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 2019/01/18 18:01:21 UTC

[maven-deploy-plugin] branch master updated: [MDEPLOY-249] fixed javadoc: format has no layout part now

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 3f279e4  [MDEPLOY-249] fixed javadoc: format has no layout part now
3f279e4 is described below

commit 3f279e4801ebc9a77585c309444b5b12620d9046
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Fri Jan 18 19:01:20 2019 +0100

    [MDEPLOY-249] fixed javadoc: format has no layout part now
---
 src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java b/src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java
index 94b9405..986591a 100644
--- a/src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java
+++ b/src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java
@@ -85,14 +85,15 @@ public class DeployMojo
     /**
      * Specifies an alternative repository to which the project artifacts should be deployed ( other than those
      * specified in &lt;distributionManagement&gt; ). <br/>
-     * Format: id::layout::url
+     * Format: <code>id::url</code>
      * <dl>
      * <dt>id</dt>
      * <dd>The id can be used to pick up the correct credentials from the settings.xml</dd>
      * <dt>url</dt>
      * <dd>The location of the repository</dd>
      * </dl>
-     * <b>Note: Since 3.0.0 the layout part has been removed.</b>
+     * <b>Note:</b> In version 2, the format was <code>id::layout::url</code>, but since 3.0.0 the layout part has been removed because Maven 3
+     * only supports <code>default</code> (ie. Maven 2) layout and not <code>legacy</code> (Maven 1) layout.</b>
      */
     @Parameter( property = "altDeploymentRepository" )
     private String altDeploymentRepository;