mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-11-29 02:00:26 +08:00
Fixes module id coloring on Maven transfer. (#686)
* Fixes module id coloring on Maven transfer. The module id coloring was not consistent during transfer and it caused "vibrating" effect. * PR comments
This commit is contained in:
@@ -767,11 +767,14 @@ public class TerminalOutput implements ClientOutput {
|
||||
if (transfer != null) {
|
||||
asb
|
||||
.append(':')
|
||||
.style(CYAN_FOREGROUND)
|
||||
.append(String.format(artifactIdFormat, prj.id))
|
||||
.style(AttributedStyle.DEFAULT)
|
||||
.append(transfer);
|
||||
} else if (execution == null) {
|
||||
asb
|
||||
.append(':')
|
||||
.style(CYAN_FOREGROUND)
|
||||
.append(prj.id);
|
||||
} else {
|
||||
asb
|
||||
|
||||
Reference in New Issue
Block a user