mirror of
https://github.com/apache/maven.git
synced 2025-03-08 17:49:15 +00:00
Add some info traces.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@168224 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd9a7f4f7b
commit
892ce50601
@ -107,11 +107,16 @@ public void execute()
|
||||
config.setModel( project.getModel() );
|
||||
|
||||
config.setOutputDirectory( new File( generatedSiteDirectory ) );
|
||||
|
||||
if ( reports != null )
|
||||
{
|
||||
for ( Iterator i = reports.values().iterator(); i.hasNext(); )
|
||||
for ( Iterator i = reports.keySet().iterator(); i.hasNext(); )
|
||||
{
|
||||
MavenReport report = (MavenReport) i.next();
|
||||
String reportKey = (String) i.next();
|
||||
|
||||
getLog().info( "Generate " + reportKey + " report." );
|
||||
|
||||
MavenReport report = (MavenReport) reports.get( reportKey );
|
||||
|
||||
report.setConfiguration( config );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user