aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon.hallingstad@gmail.com>2022-05-17 23:46:53 +0200
committerGitHub <noreply@github.com>2022-05-17 23:46:53 +0200
commitf05f60b1ec40be6f3e60349d65da60bc41555db3 (patch)
tree95ea0d1792e4731dd5235cdca777f473016340cb
parent16de8d32fd0394335ffa065b61f4943c4fd49542 (diff)
parent218246b42b636fc59e396249037b649cf7600592 (diff)
Merge pull request #22630 from vespa-engine/use-explicit-findbugsv7.586.113
Depend on jsr305 directly, will not be provided from container-dev
-rw-r--r--node-admin/pom.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/node-admin/pom.xml b/node-admin/pom.xml
index b5808ebc699..b58d20e8877 100644
--- a/node-admin/pom.xml
+++ b/node-admin/pom.xml
@@ -56,25 +56,25 @@
<!-- Compile -->
<dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>orchestrator-restapi</artifactId>
<version>${project.version}</version>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
- <scope>compile</scope>
<exclusions>
<exclusion>
<!-- Must use the one provided by Jdisc to prevent two instances of slf4j classes. -->