Fix typo in validation message

This commit is contained in:
Michael Keppler 2024-05-30 16:05:28 +02:00 committed by Slawomir Jaranowski
parent 0456c7c629
commit 808884a85d
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ public class DefaultDependencyManagementImporter implements DependencyManagement
Severity.WARNING,
Version.V40,
"Ignored POM import for: " + toString(dependency) + " as already imported "
+ toString(present) + ". Add a the conflicting managed dependency directly "
+ toString(present) + ". Add the conflicting managed dependency directly "
+ "to the dependencyManagement section of the POM.");
}
}

View File

@ -70,7 +70,7 @@ public class DefaultDependencyManagementImporter implements DependencyManagement
problems.add(new ModelProblemCollectorRequest(
ModelProblem.Severity.WARNING, ModelProblem.Version.V40)
.setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
+ toString(present) + ". Add a the conflicting managed dependency directly "
+ toString(present) + ". Add the conflicting managed dependency directly "
+ "to the dependencyManagement section of the POM."));
}
}