MPPMD-21 : New properties "maven.pmd.failonerror" and "maven.pmd.failonruleviolation" to fail the build if any errors or problems are found.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@374770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-02-03 22:50:30 +00:00
parent 6c9468d1c7
commit bb9a3d67a3
4 changed files with 25 additions and 2 deletions

View File

@ -114,7 +114,11 @@
<j:choose>
<j:when test="${sourcesPresent == 'true'}">
<pmd rulesetfiles="${maven.pmd.rulesetfiles}" printToConsole="${maven.pmd.console}">
<pmd
rulesetfiles="${maven.pmd.rulesetfiles}"
printToConsole="${maven.pmd.console}"
failonerror="${maven.pmd.failonerror}"
failOnRuleViolation="${maven.pmd.failonruleviolation}">
<formatter type="xml" toFile="${maven.build.dir}/pmd-raw-report.xml"/>
<fileset dir="${pom.build.sourceDirectory}"
includes="${maven.pmd.includes}"

View File

@ -44,4 +44,8 @@ maven.pmd.cpd.minimumtokencount = 100
maven.pmd.check.tests = true
# Print the output to the console
maven.pmd.console = false
maven.pmd.console = false
# Fail the build ?
maven.pmd.failonerror = false
maven.pmd.failonruleviolation = false

View File

@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.8-SNAPSHOT" date="In SVN">
<action dev="aheritier" type="add" issue="MPPMD-21">New properties "maven.pmd.failonerror" and "maven.pmd.failonruleviolation" to fail the build if any errors or problems are found.</action>
<action dev="aheritier" type="add" issue="MPPMD-13">New property "maven.pmd.console" to display pmd errors to the console.</action>
<action dev="aheritier" type="fix">Do not generate links to JXR files if they are not created.</action>
<action dev="aheritier" type="update">Use properties maven.jxr.destdir and maven.jxr.destdir.test to generate links from the PMD report to jxr files.</action>

View File

@ -101,6 +101,20 @@
Whether or not to display PMD errors to the console. Defaults to false.
</td>
</tr>
<tr>
<td>maven.pmd.failonerror</td>
<td>Yes</td>
<td>
Whether or not to fail the build if any errors occur while processing the files. Defaults to false.
</td>
</tr>
<tr>
<td>maven.pmd.failonruleviolation</td>
<td>Yes</td>
<td>
Whether or not to fail the build if PMD finds any problems. Defaults to false.
</td>
</tr>
</table>
</section>
</body>