From 0926ace1cb095bd9eec9d0ac8fc166c4bced893e Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Tue, 11 Nov 2025 05:27:11 -0600 Subject: [PATCH 1/2] Fix javadoc --- .../java/org/apache/maven/plugins/jar/AbstractJarMojo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/jar/AbstractJarMojo.java b/src/main/java/org/apache/maven/plugins/jar/AbstractJarMojo.java index 058ac05..996ad03 100644 --- a/src/main/java/org/apache/maven/plugins/jar/AbstractJarMojo.java +++ b/src/main/java/org/apache/maven/plugins/jar/AbstractJarMojo.java @@ -166,7 +166,7 @@ public abstract class AbstractJarMojo implements org.apache.maven.api.plugin.Moj protected AbstractJarMojo() {} /** - * Specifies whether to attach the jar to the project + * Specifies whether to attach the jar to the project. * * @since 4.0.0-beta-2 */ @@ -210,7 +210,7 @@ protected final Log getLog() { * Returns the JAR file to generate, based on an optional classifier. * * @param basedir the output directory - * @param resultFinalName the name of the ear file + * @param resultFinalName the name of the JAR file * @param classifier an optional classifier * @return the file to generate */ @@ -341,7 +341,7 @@ private boolean projectHasAlreadySetAnArtifact() { } /** - * Return {@code true} in case where the classifier is not {@code null} and contains something else than white spaces. + * Return {@code true} if the classifier is not {@code null} and contains something other than white spaces. * * @param classifier the classifier to verify * @return {@code true} if the classifier is set From 55fabd1ea8afcddf7538d6c45265c8f5cc0cd3cd Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Sun, 16 Nov 2025 08:45:27 -0600 Subject: [PATCH 2/2] retrigger checks