summaryrefslogtreecommitdiffstats
path: root/component
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-09-09 15:07:05 +0200
committergjoranv <gv@verizonmedia.com>2019-09-09 15:07:05 +0200
commit85f3496fb440b8190eed5c543c27a847657f2399 (patch)
treea3dbe9536ad52ef1f91e48379556f93a76b9d4da /component
parent12cd0e7c82c296a11e5f2e74402bf8865120fd94 (diff)
Remove findbugs annotations from code and build path.
- jsr305 is needed by guava, which declares it as optional dep. - Remaining modules with annotations do not affect the container.
Diffstat (limited to 'component')
-rwxr-xr-xcomponent/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/component/pom.xml b/component/pom.xml
index c4fd5220d97..9d8ebb8f037 100755
--- a/component/pom.xml
+++ b/component/pom.xml
@@ -38,6 +38,12 @@
<scope>provided</scope>
</dependency>
<dependency>
+ <!-- Needed by guava, which has an optional dependency on jsr305.
+ Not optional here, to avoid the need to add it to a lot of dependent modules. -->
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config-lib</artifactId>
<version>${project.version}</version>