diff --git a/maven-core/src/main/java/org/apache/maven/lifecycle/goal/phase/GoalAttainmentPhase.java b/maven-core/src/main/java/org/apache/maven/lifecycle/goal/phase/GoalAttainmentPhase.java index a8706f803d..f07fb569f1 100644 --- a/maven-core/src/main/java/org/apache/maven/lifecycle/goal/phase/GoalAttainmentPhase.java +++ b/maven-core/src/main/java/org/apache/maven/lifecycle/goal/phase/GoalAttainmentPhase.java @@ -145,8 +145,8 @@ private String createPluginParameterRequiredMessage( MojoDescriptor mojo, Parame { StringBuffer message = new StringBuffer(); - message.append( "The " + parameter.getName() ). - append( " is required for the execution of the " ). + message.append( "The '" + parameter.getName() ). + append( "' parameter is required for the execution of the " ). append( mojo.getId() ). append( " mojo and cannot be null." );