git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113685 13f79535-47bb-0310-9956-ffa450edef68
61 lines
1.8 KiB
XML
61 lines
1.8 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<document>
|
|
|
|
<properties>
|
|
<title>PMD Plug-in Properties</title>
|
|
<author email="siegfried.goeschl@it20one.at">Siegfried Goeschl</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="PMD Plug-in Properties">
|
|
<table>
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Optional?</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.pmd.enable</td>
|
|
<td>No</td>
|
|
<td>
|
|
Enable/disable the PMD plugin. Has to be set to "true"
|
|
to enable the plugin
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.pmd.rulesetfiles</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Defines the rule to be used for running PMD. Is
|
|
already defined in the plugin
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.pmd.includes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies a comma-separated list of Ant patterns to use
|
|
when matching files in the source tree to be included in the
|
|
PMD report. The pattern specified is relative to
|
|
<code>${maven.src.dir}</code>. The default value is
|
|
<code>**/*.java</code>, which matches all Java source files
|
|
in the source tree (specified by the <code>${maven.src.dir}</code>
|
|
property.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.pmd.excludes</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
Specifies a comma-separated list of Ant patterns to use when
|
|
matching files in the source tree to be excluded from the
|
|
PMD report. The pattern specified is relative to
|
|
<code>${maven.src.dir}</code>. The default value is to not
|
|
exclude any files.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document>
|