From 0c9181405ad05f284797649ef6df4fa21008bf79 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Sat, 22 Nov 2025 17:53:36 -0600 Subject: [PATCH] Typo fixes --- .../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 @@ 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<>();