This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch doc in repository https://gitbox.apache.org/repos/asf/maven-jmod-plugin.git
commit 9f7b06ff630b6b166bfb8b12edc08dc8bf83001f Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Mon Dec 22 06:24:40 2025 -0500 Fix Javadoc issues per Oracle conventions --- src/main/java/org/apache/maven/plugins/jmod/AbstractJModMojo.java | 8 ++++---- src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/jmod/AbstractJModMojo.java b/src/main/java/org/apache/maven/plugins/jmod/AbstractJModMojo.java index 49d8804..fccf2c1 100644 --- a/src/main/java/org/apache/maven/plugins/jmod/AbstractJModMojo.java +++ b/src/main/java/org/apache/maven/plugins/jmod/AbstractJModMojo.java @@ -59,7 +59,7 @@ public abstract class AbstractJModMojo extends AbstractMojo { * Specify the requirements for this JDK toolchain. This overrules the toolchain selected by the * maven-toolchain-plugin. * </p> - * <strong>note:</strong> requires at least Maven 3.3.1 + * <strong>note:</strong> requires at least Maven 3.3.1. */ @Parameter private Map<String, String> jdkToolchain; @@ -186,10 +186,10 @@ public abstract class AbstractJModMojo extends AbstractMojo { } /** - * Convert a list into a + * Convert a list into a. * - * @param modules The list of modules. - * @return The string with the module list which is separated by {@code ,}. + * @param modules the list of modules + * @return the string with the module list which is separated by {@code ,} */ protected String getCommaSeparatedList(List<String> modules) { StringBuilder sb = new StringBuilder(); diff --git a/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java b/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java index c716388..f44b0b5 100644 --- a/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java +++ b/src/main/java/org/apache/maven/plugins/jmod/JModCreateMojo.java @@ -174,7 +174,7 @@ public class JModCreateMojo extends AbstractJModMojo { private String moduleVersion; /** - * <code>--do-not-resolve-by-default</code> Exclude from the default root set of modules + * <code>--do-not-resolve-by-default</code> Exclude from the default root set of modules. */ @Parameter(defaultValue = "false") private boolean doNotResolveByDefault;
