This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git
The following commit(s) were added to refs/heads/master by this push: new 4e2e0b6b [MPLUGIN-474] Improve descriptor docs for requiredJavaVersion 4e2e0b6b is described below commit 4e2e0b6b297ca5cf0d5c46ec34b5876d219f7f98 Author: Michael Osipov <micha...@apache.org> AuthorDate: Mon Dec 25 19:28:55 2023 +0100 [MPLUGIN-474] Improve descriptor docs for requiredJavaVersion This closes #249 --- .../java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java index 48861725..127e8a37 100644 --- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java +++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java @@ -237,8 +237,8 @@ public class DescriptorGeneratorMojo extends AbstractGeneratorMojo { * * <ul> * <li>A version range which specifies the supported Java versions. It can either use the usual mathematical - * syntax like {@code "[2.0.10,2.1.0),[3.0,)"} or use a single version like {@code "2.2.1"}. The latter is a short - * form for {@code "[2.2.1,)"}, i.e. denotes the minimum version required.</li> + * syntax like {@code "[1.7,9),[11,)"} or use a single version like {@code "1.8"}. The latter is a short + * form for {@code "[1.8,)"}, i.e. denotes the minimum version required.</li> * <li>{@code "auto"} to determine the minimum Java version from the binary class version being generated during * compilation (determined by the extractor).</li> * </ul>