You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/02/18 19:29:54 UTC

[maven-invoker] branch master updated: Fix next release version in javadoc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2f2e123  Fix next release version in javadoc
2f2e123 is described below

commit 2f2e123f661080f890799dd841de785893b0199c
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Fri Feb 18 20:24:58 2022 +0100

    Fix next release version in javadoc
---
 .../java/org/apache/maven/shared/invoker/InvocationRequest.java   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/shared/invoker/InvocationRequest.java b/src/main/java/org/apache/maven/shared/invoker/InvocationRequest.java
index 3db994d..6a12935 100644
--- a/src/main/java/org/apache/maven/shared/invoker/InvocationRequest.java
+++ b/src/main/java/org/apache/maven/shared/invoker/InvocationRequest.java
@@ -769,7 +769,7 @@ public interface InvocationRequest
      * @return The path to the base directory of the Maven installation or <code>null</code> if using the default
      *         Maven installation.
      *
-     * @since 3.1.1
+     * @since 3.2.0
      */
     File getMavenHome();
 
@@ -782,7 +782,7 @@ public interface InvocationRequest
      *            default Maven installation.
      * @return This invocation request
      *
-     * @since 3.1.1
+     * @since 3.2.0
      */
     InvocationRequest setMavenHome( File mavenHome );
 
@@ -791,7 +791,7 @@ public interface InvocationRequest
      *
      * @return the custom Maven executable, otherwise {@code null}
      *
-     * @since 3.1.1
+     * @since 3.2.0
      */
     File getMavenExecutable();
 
@@ -801,7 +801,7 @@ public interface InvocationRequest
      * @param mavenExecutable the executable
      * @return This invocation request
      *
-     * @since 3.1.1
+     * @since 3.2.0
      */
     InvocationRequest setMavenExecutable( File mavenExecutable );
 }