updated error message

Former-commit-id: 1dff15f05f6380565b2df230093bccbeb4cbbe25
This commit is contained in:
Jeremy Long
2014-12-24 08:07:07 -05:00
parent 9db71c5f0c
commit 32055ecdcc

View File

@@ -332,9 +332,8 @@ public abstract class BaseDependencyCheckMojo extends AbstractMojo implements Ma
private void validateAggregate() throws MojoExecutionException {
if (aggregate == true) {
String msg = "Aggregate configuration detected - as of dependency-check 1.2.8 this no longer works and has "
+ "been deprecated. Please use the aggregate goal instead.";
LOGGER.warning(msg);
String msg = "Aggregate configuration detected - as of dependency-check 1.2.8 this no longer supported. "
+ "Please use the aggregate goal instead.";
throw new MojoExecutionException(msg);
}
}