Skip to content

Commit

Permalink
logging the module count to let the user identify how many module are…
Browse files Browse the repository at this point in the history
… still to be executed/processed
  • Loading branch information
rmannibucau committed Nov 9, 2017
1 parent 5919b74 commit 4d49d3b
Showing 1 changed file with 19 additions and 1 deletion.
Expand Up @@ -23,6 +23,8 @@
import static org.apache.maven.cli.CLIReportingUtils.formatTimestamp;
import static org.apache.maven.shared.utils.logging.MessageUtils.buffer;

import java.util.List;

import org.apache.commons.lang3.Validate;
import org.apache.maven.execution.AbstractExecutionListener;
import org.apache.maven.execution.BuildFailure;
Expand Down Expand Up @@ -53,6 +55,9 @@ public class ExecutionEventLogger
private static final int MAX_PADDED_BUILD_TIME_DURATION_LENGTH = 9;
private static final int MAX_PROJECT_NAME_LENGTH = 52;

private int totalProjects;
private volatile int currentVisitedProjectCount;

public ExecutionEventLogger()
{
logger = LoggerFactory.getLogger( ExecutionEventLogger.class );
Expand Down Expand Up @@ -106,10 +111,13 @@ public void sessionStarted( ExecutionEvent event )

logger.info( "" );

for ( MavenProject project : event.getSession().getProjects() )
final List<MavenProject> projects = event.getSession().getProjects();
for ( MavenProject project : projects )
{
logger.info( project.getName() );
}

totalProjects = projects.size();
}
}

Expand Down Expand Up @@ -259,6 +267,16 @@ public void projectStarted( ExecutionEvent event )
infoMain( "Building " + event.getProject().getName() + " " + event.getProject().getVersion() );

infoLine( '-' );

if ( totalProjects > 1 )
{
int number;
synchronized ( this )
{
number = ++currentVisitedProjectCount;
}
infoMain( "Module " + number + "/" + totalProjects );
} // else what's the point
}
}

Expand Down

0 comments on commit 4d49d3b

Please sign in to comment.