Repository: hive Updated Branches: refs/heads/master dca6ef04e -> b6c0cd405
HIVE-20595: Add findbugs-exclude.xml to metastore-server (Laszlo Pinter, reviewed by Alexander Kolbasov, Peter Vary) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/b6c0cd40 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/b6c0cd40 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/b6c0cd40 Branch: refs/heads/master Commit: b6c0cd405e102f7a168d99460e24f4e1dbfbbee9 Parents: dca6ef0 Author: Laszlo Pinter <[email protected]> Authored: Wed Sep 26 21:59:59 2018 +0200 Committer: Peter Vary <[email protected]> Committed: Wed Sep 26 21:59:59 2018 +0200 ---------------------------------------------------------------------- .../findbugs/findbugs-exclude.xml | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/b6c0cd40/standalone-metastore/metastore-server/findbugs/findbugs-exclude.xml ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-server/findbugs/findbugs-exclude.xml b/standalone-metastore/metastore-server/findbugs/findbugs-exclude.xml new file mode 100644 index 0000000..e2c76d0 --- /dev/null +++ b/standalone-metastore/metastore-server/findbugs/findbugs-exclude.xml @@ -0,0 +1,24 @@ +<!-- + 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> + <Class name="~org.apache.hadoop.hive.metastore.parser.*" /> + </Match> + <Match> + <Class name="~org.apache.hadoop.hive.metastore.api.*" /> + </Match> +</FindBugsFilter>
