This is an automated email from the ASF dual-hosted git repository. nixon pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit 52d69b4dde5e53bb1db5774eaf91dbd5f75e7c41 Author: chaitali borole <[email protected]> AuthorDate: Thu Oct 22 18:17:51 2020 +0530 ATLAS-4003 : Exclude findbugs-annotations jar from packaging (cherry picked from commit 8f9ef44660230030a69bfc7c488edf8f11cfe933) --- 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 b113d59..b7fb4da 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 c64722d..829762c 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 4625e6d..0c17523 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 7f50eea..8b58c30 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 5d0a5ee..f73c47f 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 a0b2b1d..924c15c 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>
