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 2022/05/08 16:57:37 UTC

[maven-release] branch master updated: fix javadoc

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-release.git


The following commit(s) were added to refs/heads/master by this push:
     new bbfc0e37 fix javadoc
bbfc0e37 is described below

commit bbfc0e376f6ae67fb50ccbd1bb9909ac2ed5e3b9
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun May 8 18:57:34 2022 +0200

    fix javadoc
---
 .../apache/maven/plugins/release/PrepareReleaseMojo.java   | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java b/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
index 2252d906..d65c2f2e 100644
--- a/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
+++ b/maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java
@@ -194,7 +194,7 @@ public class PrepareReleaseMojo
     /**
      * Signs SCM tag when possible, for example when using the git-exe the '--sign' argument is used.
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M4
      */
     @Parameter( property = "signTag" )
     private boolean signTag = false;
@@ -244,7 +244,7 @@ public class PrepareReleaseMojo
      * The role-hint for the {@link org.apache.maven.shared.release.policy.naming.NamingPolicy}
      * implementation used to calculate the project branch and tag names.
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M1
      * @see org.apache.maven.shared.release.policies.DefaultNamingPolicy
      */
     @Parameter( property = "projectNamingPolicyId" )
@@ -264,7 +264,7 @@ public class PrepareReleaseMojo
      *     <li><code>releaseLabel</code> - The release version of the root project.
      * </ul>
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M1
      */
     @Parameter( defaultValue = "@{prefix} prepare release @{releaseLabel}", property = "scmReleaseCommitComment" )
     private String scmReleaseCommitComment = "@{prefix} prepare release @{releaseLabel}";
@@ -283,7 +283,7 @@ public class PrepareReleaseMojo
      *     <li><code>releaseLabel</code> - The release version of the root project.
      * </ul>
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M1
      */
     @Parameter(
             defaultValue = "@{prefix} prepare for next development iteration",
@@ -303,7 +303,7 @@ public class PrepareReleaseMojo
      * <li>"extensions" or "4": resolve extension dependencies</li>
      * </ul>
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M4
      */
     @Parameter( property = "autoResolveSnapshots" )
     private String autoResolveSnapshots;
@@ -312,7 +312,7 @@ public class PrepareReleaseMojo
      * Currently only implemented with svn scm. Enable the {@code --pin-externals} option in
      * {@code svn copy} command which is new in Subversion 1.9.
      *
-     * @since 3.0.0-M5
+     * @since 3.0.0-M4
      */
     @Parameter( defaultValue = "false", property = "pinExternals" )
     private boolean pinExternals;
@@ -328,7 +328,7 @@ public class PrepareReleaseMojo
      * <li><code>source</code> - Use the same line separator as it is specified in the current pom.xml.</li>
      * </ul>
      *
-     * @since 3.0.0
+     * @since 3.0.0-M6
      */
     @Parameter( defaultValue = "source", property = "lineSeparator" )
     private String lineSeparator;