jeffjensen 06/07/04 16:25:25
Modified: findbugs plugin.jelly plugin.properties
findbugs/xdocs properties.xml
Log:
Add quietErrors property.
Revision Changes Path
1.15 +2 -1 maven-plugins/findbugs/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.jelly,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- plugin.jelly 24 Jun 2006 13:31:26 -0000 1.14
+++ plugin.jelly 4 Jul 2006 23:25:25 -0000 1.15
@@ -96,7 +96,8 @@
workHard="${maven.findbugs.workHard}"
output="xdocs"
outputFile="${maven.build.dir}/findbugs-raw-report.xml"
- failOnError="${maven.findbugs.failOnError}">
+ failOnError="${maven.findbugs.failOnError}"
+ quietErrors="${maven.findbugs.quietErrors}">
<j:if test="${context.getVariable('maven.findbugs.jvmargs') != null}">
<ant:setProperty name="jvmargs" value="${maven.findbugs.jvmargs}" />
1.6 +1 -0 maven-plugins/findbugs/plugin.properties
Index: plugin.properties
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/plugin.properties,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- plugin.properties 24 Jun 2006 13:31:26 -0000 1.5
+++ plugin.properties 4 Jul 2006 23:25:25 -0000 1.6
@@ -17,3 +17,4 @@
maven.findbugs.workHard = true
maven.findbugs.jvmargs = -Xmx256m
maven.findbugs.failOnError = true
+maven.findbugs.quietErrors = false
1.8 +9 -0 maven-plugins/findbugs/xdocs/properties.xml
Index: properties.xml
===================================================================
RCS file: /cvsroot/maven-plugins/maven-plugins/findbugs/xdocs/properties.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- properties.xml 24 Jun 2006 13:31:26 -0000 1.7
+++ properties.xml 4 Jul 2006 23:25:25 -0000 1.8
@@ -121,6 +121,15 @@
</p>
</td>
</tr>
+ <tr>
+ <td>maven.findbugs.quietErrors</td>
+ <td>Yes</td>
+ <td>
+ <p>
+ If true, reports of serious analysis errors and missing classes will be suppressed in the FindBugs output. Default is false.
+ </p>
+ </td>
+ </tr>
</table>
</section>
|