You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ni...@apache.org on 2020/10/23 14:32:35 UTC

[atlas] 02/05: ATLAS-4003 : Exclude findbugs-annotations jar from packaging

This is an automated email from the ASF dual-hosted git repository.

nixon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit 8f9ef44660230030a69bfc7c488edf8f11cfe933
Author: chaitali borole <ch...@cloudera.com>
AuthorDate: Thu Oct 22 18:17:51 2020 +0530

    ATLAS-4003 : Exclude findbugs-annotations jar from packaging
---
 addons/hbase-bridge-shim/pom.xml  |  4 ++++
 addons/hbase-bridge/pom.xml       |  6 ++++++
 addons/hbase-testing-util/pom.xml | 12 ++++++++++++
 addons/hive-bridge/pom.xml        |  4 ++++
 addons/sqoop-bridge/pom.xml       |  4 ++++
 repository/pom.xml                |  6 ++++++
 6 files changed, 36 insertions(+)

diff --git a/addons/hbase-bridge-shim/pom.xml b/addons/hbase-bridge-shim/pom.xml
index ed8d7df..eb1b2e9 100644
--- a/addons/hbase-bridge-shim/pom.xml
+++ b/addons/hbase-bridge-shim/pom.xml
@@ -47,6 +47,10 @@
                     <artifactId>servlet-api</artifactId>
                 </exclusion>
                 <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
+                <exclusion>
                     <groupId>javax.ws.rs</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
diff --git a/addons/hbase-bridge/pom.xml b/addons/hbase-bridge/pom.xml
index c1d18c2..46d2458 100644
--- a/addons/hbase-bridge/pom.xml
+++ b/addons/hbase-bridge/pom.xml
@@ -176,6 +176,12 @@
             <groupId>org.apache.hbase</groupId>
             <artifactId>hbase-common</artifactId>
             <version>${hbase.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.hbase</groupId>
diff --git a/addons/hbase-testing-util/pom.xml b/addons/hbase-testing-util/pom.xml
index 8bf5571..785084d 100644
--- a/addons/hbase-testing-util/pom.xml
+++ b/addons/hbase-testing-util/pom.xml
@@ -133,6 +133,12 @@
             <version>${hbase.version}</version>
             <type>jar</type>
             <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
@@ -155,6 +161,12 @@
             <version>${hbase.version}</version>
             <type>jar</type>
             <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/addons/hive-bridge/pom.xml b/addons/hive-bridge/pom.xml
index 662fdd4..54a6d8e 100755
--- a/addons/hive-bridge/pom.xml
+++ b/addons/hive-bridge/pom.xml
@@ -56,6 +56,10 @@
                     <groupId>org.eclipse.jetty</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
             </exclusions>
 
         </dependency>
diff --git a/addons/sqoop-bridge/pom.xml b/addons/sqoop-bridge/pom.xml
index 629eda1..3d095dc 100644
--- a/addons/sqoop-bridge/pom.xml
+++ b/addons/sqoop-bridge/pom.xml
@@ -52,6 +52,10 @@
                     <groupId>org.mortbay.jetty</groupId>
                     <artifactId>*</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>com.github.stephenc.findbugs</groupId>
+                    <artifactId>findbugs-annotations</artifactId>
+                </exclusion>
             </exclusions>
 
         </dependency>
diff --git a/repository/pom.xml b/repository/pom.xml
index 8618962..3ba0f7d 100755
--- a/repository/pom.xml
+++ b/repository/pom.xml
@@ -140,6 +140,12 @@
         <dependency>
             <groupId>org.apache.hbase</groupId>
             <artifactId>hbase-client</artifactId>
+            <exclusions>
+            <exclusion>
+                <groupId>com.github.stephenc.findbugs</groupId>
+                <artifactId>findbugs-annotations</artifactId>
+            </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>