Skip to content

Commit

Permalink
CDR-1442 Exclude outdated wireshark guava version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlehn committed Jun 13, 2024
1 parent 8c6f46c commit 95ff009
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<exclusions>
<!--
Messes up with guava from archie. Wiremock uses an older version that is missing findbugs,
when maven decides to use this version for packaging, it will lead to runtime failure
because some Nullable annotation can not be found in the classpath.
-->
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mock-server</groupId>
Expand Down

0 comments on commit 95ff009

Please sign in to comment.