From 89ea5a2dce6b3cd19cde423c5febc5d9a4e15d2a Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Sat, 29 Nov 2025 19:35:07 -0600 Subject: [PATCH] Fix typos --- .../maven/plugins/source/AbstractSourceJarMojo.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 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..69931be 100644 --- a/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java +++ b/src/main/java/org/apache/maven/plugins/source/AbstractSourceJarMojo.java @@ -102,7 +102,7 @@ public abstract class AbstractSourceJarMojo implements Mojo { * Archiver Reference.
* Note: Since 3.0.0 the resulting archives contain a maven descriptor. If you need to suppress the generation of * the maven descriptor you can simply achieve this by using the - * archiver configuration.. + * archiver configuration. * * @since 2.1 */ @@ -501,7 +501,7 @@ protected String getExtension() { /** * @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 @@ private String[] getCombinedIncludes(List additionalIncludes) { /** * 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 additionalExcludes) { List combinedExcludes = new ArrayList<>();