Added new <code>maven.checkstyle.suppressions.file</code> property.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@116012 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2004-08-28 18:24:53 +00:00
parent fbfcc2c583
commit 483dddf00b
3 changed files with 18 additions and 0 deletions

View File

@ -147,6 +147,8 @@
file="${maven.checkstyle.header.file}"/>
<property key="checkstyle.cache.file"
file="${maven.checkstyle.cache.file}"/>
<property key="checkstyle.suppressions.file"
file="${maven.checkstyle.suppressions.file}"/>
<ant:fileset dir="${pom.build.sourceDirectory}"
includes="${maven.checkstyle.includes}"

View File

@ -26,6 +26,10 @@
</properties>
<body>
<release version="2.5-SNAPSHOT" date="In CVS">
<action dev="vmassol" type="add">
Added new <code>maven.checkstyle.suppressions.file</code>
property.
</action>
<action dev="vmassol" type="add">
Added generation of a Checkstyle RSS feed.
</action>

View File

@ -118,6 +118,18 @@
violations in XML format) which is always created.
</td>
</tr>
<tr>
<td>maven.checkstyle.suppressions.file</td>
<td>Yes</td>
<td>
Specifies the location of the suppressions file to use. The plugin
defines a Checkstyle property named
<code>checkstyle.suppressions.file</code> with the value of this
property. This allows using the Checkstyle property your own
custom checkstyle configuration file when specifying a
suppressions file.
</td>
</tr>
</table>
</section>
</body>