diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-10 18:43:34 +0300 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-10 18:49:54 +0300 |
commit | e2f37f11e651a7bcfd9aa6d939584d5590c36f50 (patch) | |
tree | f4252a9dad5327163aee0b0a9105ef95df2a2cdc /integration/pom.xml | |
parent | f3bc1c9e4faffe73acea8ba90b82a87bcdae2045 (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>
Diffstat (limited to 'integration/pom.xml')
-rw-r--r-- | integration/pom.xml | 11 |
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 --> |