Files
maven-plugins/clover/xdocs/properties.xml
dion 743b0e4293 Apply MAVEN-819
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114086 13f79535-47bb-0310-9956-ffa450edef68
2003-09-24 05:14:53 +00:00

67 lines
2.2 KiB
XML

<?xml version="1.0"?>
<document>
<properties>
<author email="vmassol@octo.com">Vincent Massol</author>
<title>Maven Clover Plug-in Properties Documentation</title>
</properties>
<body>
<section name="Maven Clover Plug-in Properties">
<p>
The following is an overview of the various properties (and
default values) used by the Maven Clover Plug-in <a
href="build-file.html">build file</a>. Most of these
properties are optional and have defaults; however, there are
mandatory properties that must be set as described in this document.
</p>
<p>
These properties can be overridden to change the default behavior of
the Maven Clover Plug-in. If you need to override any of these
properties, please refer to the
<a href="../../start/integrate.html">Integration</a>
document for the preferred method of setting properties in your project.
</p>
<table>
<tr><th>Section</th><th>Description</th></tr>
<tr>
<td><a href="#Misc Settings">Misc</a></td>
<td>
These properties specify various settings that control the
behaviour of the Clover Plug-in.
</td>
</tr>
</table>
</section>
<section name="Misc Settings">
<table>
<tr><th>Property</th><th>Optional?</th><th>Description</th></tr>
<tr>
<td><a name="maven.clover.database.dir">maven.clover.database.dir</a></td>
<td>No</td>
<td>
Specifies the location of the Clover database. The default value is
<code>${maven.build.dir}/clover/database</code>.
</td>
</tr>
<tr>
<td>maven.clover.orderBy</td>
<td>No</td>
<td>
Specifies the type of report to generate:
<ul>
<li>Alpha -- Alpabetical </li>
<li>PcCoveredAsc -- Percent total coverage, ascending <b>(default)</b></li>
<li>PcCoveredDesc -- Percent total coverage, descending </li>
<li>ElementsCoveredAsc -- Total elements covered, ascending </li>
<li>ElementsCoveredDesc -- Total elements covered, descending </li>
</ul>
</td>
</tr>
</table>
</section>
</body>
</document>