This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch jd in repository https://gitbox.apache.org/repos/asf/maven-source-plugin.git
commit 0c9181405ad05f284797649ef6df4fa21008bf79 Author: Elliotte Rusty Harold <[email protected]> AuthorDate: Sat Nov 22 17:53:36 2025 -0600 Typo fixes --- .../org/apache/maven/plugins/source/AbstractSourceJarMojo.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java index d8f1747..2a4ad70 100644 --- a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java +++ b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java @@ -501,7 +501,7 @@ public abstract class AbstractSourceJarMojo implements Mojo { /** * @param p {@link Project} - * @return The execution projet. + * @return the execution project */ protected Project getProject(Project p) { return projectManager.getExecutionProject(p).orElse(p); @@ -542,10 +542,10 @@ public abstract class AbstractSourceJarMojo implements Mojo { /** * Combines the user parameter {@link #excludes}, the default excludes from plexus FileUtils, and the contents of - * the parameter addionalExcludes. + * the parameter additionalExcludes. * - * @param additionalExcludes Additional excludes to add to the array - * @return The combined list of excludes. + * @param additionalExcludes additional excludes to add to the array + * @return the combined list of excludes */ private String[] getCombinedExcludes(List<String> additionalExcludes) { List<String> combinedExcludes = new ArrayList<>();
