Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -542,10 +542,10 @@ private String[] getCombinedIncludes(List<String> 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<String> additionalExcludes) {
List<String> combinedExcludes = new ArrayList<>();
Expand Down
Loading