summaryrefslogtreecommitdiffstats
path: root/container-dev
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-09-11 14:20:02 +0200
committergjoranv <gv@oath.com>2017-09-11 14:20:02 +0200
commit42a6b3a6010d13016d31901ade3250e1929c7acd (patch)
tree096faedf13b88d2f1ef043b97518ec5772ea78ac /container-dev
parent608a89f6e3d0d6832f9854b2fc0d692fee4857f8 (diff)
Exclude findbugs artifacts from provided classpath.
- com.google.code.findbugs:annotations:jar:1.3.9 - com.google.code.findbugs:jsr305:jar:1.3.9 * There should be no reason to expose these in test scope, they only contain annotations.
Diffstat (limited to 'container-dev')
-rw-r--r--container-dev/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index c819a478a9b..2864c19d219 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -53,6 +53,16 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>config-lib</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
@@ -94,6 +104,14 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</exclusion>
@@ -147,6 +165,10 @@
<version>${project.version}</version>
<exclusions>
<exclusion>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>annotations</artifactId>
+ </exclusion>
+ <exclusion>
<!-- TODO: Remove exclusion when scala-xml is excluded in config-bundle pom -->
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-xml_${scala.major-version}</artifactId>