in src/main/java/org/apache/maven/plugins/antrun/AntRunMojo.java [317:324]
private void checkDeprecatedParameterUsage(Object parameter, String name, String replacement)
throws MojoFailureException {
if (parameter != null) {
throw new MojoFailureException("You are using '" + name + "' which has been removed"
+ " from the maven-antrun-plugin. Please use '" + replacement
+ "' and refer to the >>Major Version Upgrade to version 3.0.0<< " + "on the plugin site.");
}
}