mirror of https://github.com/apache/maven.git
[MNG-6180] groupId has plain color when goal fails
This commit is contained in:
parent
34afec69c8
commit
8f025faab8
|
@ -84,8 +84,9 @@ public class LifecycleExecutionException
|
|||
|
||||
if ( execution != null )
|
||||
{
|
||||
buffer.a( ' ' ).a( execution.getGroupId() ).a( ':' );
|
||||
buffer.mojo( execution.getArtifactId() + ':' + execution.getVersion() + ':' + execution.getGoal() );
|
||||
buffer.a( ' ' );
|
||||
buffer.mojo( execution.getGroupId() + ':' + execution.getArtifactId() + ':' + execution.getVersion() + ':'
|
||||
+ execution.getGoal() );
|
||||
buffer.a( ' ' ).strong( '(' + execution.getExecutionId() + ')' );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue