- Added more explanation for running the clover aggregators git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114267 13f79535-47bb-0310-9956-ffa450edef68
78 lines
2.3 KiB
XML
78 lines
2.3 KiB
XML
<?xml version="1.0"?>
|
|
<document>
|
|
|
|
<properties>
|
|
<title>Maven Dashboard aggregators</title>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Maven Dashboard aggregators">
|
|
<p>
|
|
An aggregator is an extension to the dashboard that gathers
|
|
metric information that get displayed in the dashboard report.
|
|
You can provide your own custom aggregators. The dashboard plugin
|
|
comes with several default aggregators described below.
|
|
</p>
|
|
<table>
|
|
<tr>
|
|
<th>Aggregator name</th>
|
|
<th>Topic</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>csall</td>
|
|
<td>Checkstyle</td>
|
|
<td>
|
|
Computes total number of Checkstyle warnings and errors.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>cserrors</td>
|
|
<td>Checkstyle</td>
|
|
<td>
|
|
Computes total number of Checkstyle errors.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>cswarnings</td>
|
|
<td>Checkstyle</td>
|
|
<td>
|
|
Computes total number of Checkstyle warnings.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>clovertpc</td>
|
|
<td>Clover</td>
|
|
<td>
|
|
Computes total Test Coverage Percentage (TPC) using Clover.
|
|
Note: make sure you define <code>maven.clover.report.xml=true</code>
|
|
as this aggregators extracts its information from the XML Clover
|
|
report.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>cloverloc</td>
|
|
<td>Clover</td>
|
|
<td>
|
|
Computes total Line Of Code (LOC) using Clover.
|
|
Note: make sure you define <code>maven.clover.report.xml=true</code>
|
|
as this aggregators extracts its information from the XML Clover
|
|
report.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>cloverncloc</td>
|
|
<td>Clover</td>
|
|
<td>
|
|
Computes total Non-Commented Line Of Code (NCLOC) using Clover.
|
|
Note: make sure you define <code>maven.clover.report.xml=true</code>
|
|
as this aggregators extracts its information from the XML Clover
|
|
report.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document>
|