Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 2.5
-
Fix Version/s: None
-
Labels:None
-
Environment:HideApache Maven 3.0 (r1004208; 2010-10-04 06:50:56-0500)
Java version: 1.6.0_23
Java home: c:\Program Files\Java\jdk1.6.0_23\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7" version: "6.1" arch: "x86" Family: "windows"ShowApache Maven 3.0 (r1004208; 2010-10-04 06:50:56-0500) Java version: 1.6.0_23 Java home: c:\Program Files\Java\jdk1.6.0_23\jre Default locale: en_US, platform encoding: Cp1252 OS name: "windows 7" version: "6.1" arch: "x86" Family: "windows"
-
Number of attachments :
Description
When running 'mvn site', the Cobertura plugin appears to create empty index.html in target\site\.
When maven attempts to create the "About" section of the website, it notices the index.html already exists and skips this step.
The problem is resolved either by disabling the Cobertura plugin, or by reverting to version 2.4.
This is the corresponding configuration for Cobertura:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<formats>
<format>xml</format>
</formats>
</configuration>
</plugin>
Issue Links
- relates to
-
MCOBERTURA-145
Regression: report will not be rendered on invocation of mvn clean install site for a multi module project.
-
Consider this as a duplicate of
MCOBERTURA-145: other symptom caused by the same bug.