Author: kiwiwings
Date: Thu Feb 13 00:07:36 2014
New Revision: 1567815
URL: http://svn.apache.org/r1567815
Log:
disable not applicable findbugs check
Added:
poi/trunk/src/resources/devtools/findbugs-filters.xml
Modified:
poi/trunk/build.xml
Modified: poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1567815&r1=1567814&r2=1567815&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Thu Feb 13 00:07:36 2014
@@ -1404,7 +1404,8 @@ under the License.
</fileset>
</classpath>
</taskdef>
- <findbugs home="${findbugs.home}" output="html"
outputFile="build/findbugs.html">
+ <findbugs home="${findbugs.home}" output="html"
outputFile="build/findbugs.html"
+
includeFilter="src/resources/devtools/findbugs-filters.xml">
<fileset dir="${dist.dir}">
<include name="poi-${version.id}-*.jar"/>
<include
name="poi-scratchpad-${version.id}-*.jar"/>
Added: poi/trunk/src/resources/devtools/findbugs-filters.xml
URL:
http://svn.apache.org/viewvc/poi/trunk/src/resources/devtools/findbugs-filters.xml?rev=1567815&view=auto
==============================================================================
--- poi/trunk/src/resources/devtools/findbugs-filters.xml (added)
+++ poi/trunk/src/resources/devtools/findbugs-filters.xml Thu Feb 13 00:07:36
2014
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ====================================================================
+ 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.
+ ====================================================================
+-->
+<FindBugsFilter>
+<Match>
+<Not><Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE"/></Not>
+</Match>
+</FindBugsFilter>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]