git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115463 13f79535-47bb-0310-9956-ffa450edef68
103 lines
2.9 KiB
XML
103 lines
2.9 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2004 The Apache Software Foundation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
-->
|
|
|
|
<document>
|
|
|
|
<properties>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
<title>Maven Clover plugin properties</title>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="Maven Clover plugin properties">
|
|
<table>
|
|
<tr><th>Property</th><th>Optional?</th><th>Description</th><th>Default</th></tr>
|
|
<tr>
|
|
<td>maven.clover.orderBy</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies how the reports must be sorted:
|
|
<ul>
|
|
<li>Alpha -- Alpabetical </li>
|
|
<li>PcCoveredAsc -- Percent total coverage, ascending</li>
|
|
<li>PcCoveredDesc -- Percent total coverage, descending </li>
|
|
<li>ElementsCoveredAsc -- Total elements covered, ascending </li>
|
|
<li>ElementsCoveredDesc -- Total elements covered, descending </li>
|
|
</ul>
|
|
</td>
|
|
<td>
|
|
<code>PcCoveredAsc</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.clover.instrument.tests</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Decides whether to instrument test classes.
|
|
</td>
|
|
<td>
|
|
<code>false</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.clover.report.html</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Decides whether an HTML report will be generated.
|
|
</td>
|
|
<td>
|
|
<code>true</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.clover.report.xml</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Decides whether an XML report will be generated.
|
|
</td>
|
|
<td>
|
|
<code>false</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.clover.report.swing</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Decides whether a Swing report will be generated.
|
|
</td>
|
|
<td>
|
|
<code>false</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.clover.database.dir</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies the location of the Clover database.
|
|
</td>
|
|
<td>
|
|
<code>${maven.build.clover}/database</code>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document>
|