]> source.dussan.org Git - poi.git/commitdiff
disable not applicable findbugs check
authorAndreas Beeker <kiwiwings@apache.org>
Thu, 13 Feb 2014 00:07:36 +0000 (00:07 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Thu, 13 Feb 2014 00:07:36 +0000 (00:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1567815 13f79535-47bb-0310-9956-ffa450edef68

build.xml
src/resources/devtools/findbugs-filters.xml [new file with mode: 0644]

index 9deaa09cf5d56e90faab79585980a2c1a4a5f8ba..4500454aef8b657fdb2a7d9f9155b48d5a573403 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -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"/>
diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml
new file mode 100644 (file)
index 0000000..4b47561
--- /dev/null
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<!--\r
+   ====================================================================\r
+   Licensed to the Apache Software Foundation (ASF) under one or more\r
+   contributor license agreements.  See the NOTICE file distributed with\r
+   this work for additional information regarding copyright ownership.\r
+   The ASF licenses this file to You under the Apache License, Version 2.0\r
+   (the "License"); you may not use this file except in compliance with\r
+   the License.  You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+   ====================================================================\r
+-->\r
+<FindBugsFilter>\r
+<Match>\r
+<Not><Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE"/></Not>\r
+</Match>\r
+</FindBugsFilter>
\ No newline at end of file