Index: C:/dev/workspaces/third_party/maven-trunk/maven-reporting/maven-reporting-impl/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java =================================================================== --- C:/dev/workspaces/third_party/maven-trunk/maven-reporting/maven-reporting-impl/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java (revision 386443) +++ C:/dev/workspaces/third_party/maven-trunk/maven-reporting/maven-reporting-impl/src/main/java/org/apache/maven/reporting/AbstractMavenReport.java (working copy) @@ -56,6 +56,10 @@ public void execute() throws MojoExecutionException { + if ( !canGenerateReport() ) { + return; + } + try { String outputDirectory = getOutputDirectory();