summaryrefslogtreecommitdiffstats
path: root/zkfacade
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2019-08-21 13:56:57 +0200
committerHarald Musum <musum@verizonmedia.com>2019-08-21 13:56:57 +0200
commit0459d49611be49def0b0cecab9173ea0682a82ed (patch)
tree09692fa6d5cb72018ae4f072093e0857d3d200f2 /zkfacade
parentcda1cb11a3b9af73d25832d59da580c1c86edf46 (diff)
Exclude com.github.spotbugs:spotbugs-annotations
Diffstat (limited to 'zkfacade')
-rw-r--r--zkfacade/pom.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/zkfacade/pom.xml b/zkfacade/pom.xml
index c57ab45e6c6..8b8dcf826e6 100644
--- a/zkfacade/pom.xml
+++ b/zkfacade/pom.xml
@@ -65,6 +65,19 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.zookeeper</groupId>
+ <artifactId>zookeeper</artifactId>
+ <!-- Need to exclude this artifact, since it exports edu.umd.cs.findbugs.annotations,
+ which will not be found
+ -->
+ <exclusions>
+ <exclusion>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-annotations</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
<plugins>