Skip to content

Commit

Permalink
Pass parameters in the correct order.
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebeaton committed Dec 1, 2023
1 parent 3f7c9ce commit 27a3519
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
// Validate the user-given dash license tool settings
ISettings settings;
try {
settings = new MavenSettings(batch, foundationApi, clearlyDefinedApi, licenses, confidence, projectId, repo, iplabToken);
settings = new MavenSettings(batch, foundationApi, clearlyDefinedApi, licenses, confidence, projectId, iplabToken, repo);
} catch (IllegalArgumentException e) {
throw new MojoExecutionException("Invalid setting: " + e.getMessage());
}
Expand Down

0 comments on commit 27a3519

Please sign in to comment.