aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@ericsson.com>2018-07-10 18:43:34 +0300
committerliamfallon <liam.fallon@ericsson.com>2018-07-10 18:49:54 +0300
commite2f37f11e651a7bcfd9aa6d939584d5590c36f50 (patch)
treef4252a9dad5327163aee0b0a9105ef95df2a2cdc
parentf3bc1c9e4faffe73acea8ba90b82a87bcdae2045 (diff)
Fix license issue in Guava dependency
The checker framework checker qual dependency of Guava needs to be upgraded to version 2.5.3, a version that is OKed by the Linux Foundation Issue-ID: POLICY-905 Change-Id: Ib29ca90253594dfb594d0a104e0653051414aae1 Signed-off-by: liamfallon <liam.fallon@ericsson.com>
-rw-r--r--integration/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/integration/pom.xml b/integration/pom.xml
index 2e189382..8e6277e4 100644
--- a/integration/pom.xml
+++ b/integration/pom.xml
@@ -102,6 +102,17 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>25.1-jre</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.checkerframework</groupId>
+ <artifactId>checker-qual</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.checkerframework</groupId>
+ <artifactId>checker-qual</artifactId>
+ <version>2.5.3</version>
</dependency>
<!-- JSON marshalling and unmarshalling -->