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 2018/04/23 08:05:48 UTC

[maven-invoker-plugin] branch master updated: [MINVOKER-236] improved setup jobs display

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-invoker-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new d830ce2  [MINVOKER-236] improved setup jobs display
d830ce2 is described below

commit d830ce2f12b740f2cbc812530de2604c25870278
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon Apr 23 10:05:47 2018 +0200

    [MINVOKER-236] improved setup jobs display
---
 .../java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java b/src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java
index 182e8c9..02e489a 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/AbstractInvokerMojo.java
@@ -721,8 +721,10 @@ public abstract class AbstractInvokerMojo
             // mode.
             //
             // Some Idea about ordering?
-            getLog().info( "Running Setup Jobs" );
+            getLog().info( "Running " + setupBuildJobs.length + " setup job"
+                + ( ( setupBuildJobs.length < 2 ) ? "" : "s" ) + ":" );
             runBuilds( projectsDir, setupBuildJobs, 1 );
+            getLog().info( "Setup done." );
         }
 
         // Afterwards run all other jobs.

-- 
To stop receiving notification emails like this one, please contact
hboutemy@apache.org.