You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2021/01/03 00:13:14 UTC

[maven-artifact-plugin] branch master updated: on success, use success color instead of strong

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-artifact-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 85fe5c5  on success, use success color instead of strong
85fe5c5 is described below

commit 85fe5c505197a80cfe13ff23268d84bc3685feec
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun Jan 3 01:13:10 2021 +0100

    on success, use success color instead of strong
---
 .../java/org/apache/maven/plugins/artifact/buildinfo/BuildinfoMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildinfoMojo.java b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildinfoMojo.java
index 9a69a07..6ff786a 100644
--- a/src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildinfoMojo.java
+++ b/src/main/java/org/apache/maven/plugins/artifact/buildinfo/BuildinfoMojo.java
@@ -305,7 +305,7 @@ public class BuildinfoMojo
           }
         else
         {
-            getLog().info( "Reproducible Build output summary: " + MessageUtils.buffer().strong( ok + " files ok" ) );
+            getLog().info( "Reproducible Build output summary: " + MessageUtils.buffer().success( ok + " files ok" ) );
         }
 
         if ( referenceCompareSave )