You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2019/04/18 12:57:42 UTC

[storm] branch 1.x-branch updated: STORM-3381: Exclude spotbugs-annotations from Zookeeper

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

srdo pushed a commit to branch 1.x-branch
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/1.x-branch by this push:
     new eb7f53e  STORM-3381: Exclude spotbugs-annotations from Zookeeper
eb7f53e is described below

commit eb7f53e7404dec462dc77963296fe2cc00932a99
Author: Stig Rohde Døssing <sr...@apache.org>
AuthorDate: Wed Apr 17 13:08:01 2019 +0200

    STORM-3381: Exclude spotbugs-annotations from Zookeeper
---
 pom.xml            | 4 ++++
 storm-core/pom.xml | 4 ----
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8ad193f..69e1b6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -662,6 +662,10 @@
                         <groupId>log4j</groupId>
                         <artifactId>log4j</artifactId>
                     </exclusion>
+                    <exclusion>
+                        <groupId>com.github.spotbugs</groupId>
+                        <artifactId>spotbugs-annotations</artifactId>
+                    </exclusion>
                 </exclusions>
             </dependency>
             <dependency>
diff --git a/storm-core/pom.xml b/storm-core/pom.xml
index 2a92e27..2793891 100644
--- a/storm-core/pom.xml
+++ b/storm-core/pom.xml
@@ -284,10 +284,6 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.zookeeper</groupId>
-            <artifactId>zookeeper</artifactId>
-        </dependency>
-        <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
         </dependency>