Author: oheger
Date: Thu Nov 8 13:11:49 2007
New Revision: 593315
URL: http://svn.apache.org/viewvc?rev=593315&view=rev
Log:
Added an exclusion filter for findbugs
Added:
commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml (with
props)
Modified:
commons/proper/configuration/trunk/project.properties
Added: commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml?rev=593315&view=auto
==============================================================================
--- commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml (added)
+++ commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml Thu Nov
8 13:11:49 2007
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<!-- ===================================================================== -->
+<!-- $Id$ -->
+<!-- ===================================================================== -->
+<FindBugsFilter>
+ <!-- Disable the warnings for the generated classes -->
+ <Match>
+ <Class name="org.apache.commons.configuration.plist.ParseException"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.commons.configuration.plist.PropertyListParser"/>
+ </Match>
+ <Match>
+ <Class
name="org.apache.commons.configuration.plist.PropertyListParserConstants"/>
+ </Match>
+ <Match>
+ <Class
name="org.apache.commons.configuration.plist.PropertyListParserTokenManager"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.commons.configuration.plist.SimpleCharStream"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.commons.configuration.plist.Token"/>
+ </Match>
+ <Match>
+ <Class name="org.apache.commons.configuration.plist.TokenMgrError"/>
+ </Match>
+
+ <!-- Enable only high priority warnings -->
+ <Match>
+ <Priority value="2"/>
+ </Match>
+
+ <Match>
+ <Priority value="3"/>
+ </Match>
+</FindBugsFilter>
Propchange: commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange: commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: commons/proper/configuration/trunk/project.properties
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/project.properties?rev=593315&r1=593314&r2=593315&view=diff
==============================================================================
--- commons/proper/configuration/trunk/project.properties (original)
+++ commons/proper/configuration/trunk/project.properties Thu Nov 8 13:11:49
2007
@@ -52,3 +52,5 @@
maven.jdiff.new.tag=CURRENT
maven.jdiff.old.tag=CONFIGURATION_1_4
+maven.findbugs.excludeFilter=conf/findbugs-exclude-filter.xml
+