You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jm...@apache.org on 2016/03/10 20:43:10 UTC

hbase git commit: HBASE-15434 [findbugs] Exclude scala generated source and protobuf generated code in hbase-spark module

Repository: hbase
Updated Branches:
  refs/heads/master f6945c463 -> b3e71d464


HBASE-15434 [findbugs] Exclude scala generated source and protobuf generated code in hbase-spark module


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b3e71d46
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b3e71d46
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b3e71d46

Branch: refs/heads/master
Commit: b3e71d46445b0f51344a89390592a06d71db9d3f
Parents: f6945c4
Author: Jonathan M Hsieh <jm...@apache.org>
Authored: Thu Mar 10 11:42:25 2016 -0800
Committer: Jonathan M Hsieh <jm...@apache.org>
Committed: Thu Mar 10 11:42:25 2016 -0800

----------------------------------------------------------------------
 dev-support/findbugs-exclude.xml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b3e71d46/dev-support/findbugs-exclude.xml
----------------------------------------------------------------------
diff --git a/dev-support/findbugs-exclude.xml b/dev-support/findbugs-exclude.xml
index d89f9b2..4d17582 100644
--- a/dev-support/findbugs-exclude.xml
+++ b/dev-support/findbugs-exclude.xml
@@ -270,4 +270,13 @@
     <Bug pattern="MS_EXPOSE_REP"/>
   </Match>
 
+  <Match>
+    <Source name="~.*\.scala" />
+  </Match>
+
+  <Match>
+    <Package name="org.apache.hadoop.hbase.spark.protobuf.generated"/>
+  </Match>
+
+
 </FindBugsFilter>