From 1d7c224bd46f8ab576645e5d722ac595ab875406 Mon Sep 17 00:00:00 2001 From: Igor Bernstein Date: Mon, 9 Aug 2021 13:46:27 -0400 Subject: [PATCH] deps: fix UpperBoundsDep check for checker-qual (#941) #939 switch guava from -android to -jre, which replaced the transitive dep checker-compat-qual with checker-qual. This introduced a version conflict between guava's transitive deps and truth's: gauva depends on version 3.8.0 while truth depends on 3.13.0. #939 tried to workaround the conflict by excluding the transitive dep from truth, but it didnt do it all places. This finishes the workaround. I'm not convinced that this is the correct way to resolve the dependency conflict, but for now this PR just makes it consistent --- google-cloud-bigtable-emulator/pom.xml | 8 ++++++++ google-cloud-bigtable/pom.xml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/google-cloud-bigtable-emulator/pom.xml b/google-cloud-bigtable-emulator/pom.xml index 117c959d3..5b8ed0d5a 100644 --- a/google-cloud-bigtable-emulator/pom.xml +++ b/google-cloud-bigtable-emulator/pom.xml @@ -150,6 +150,14 @@ com.google.truth truth test + + + + + org.checkerframework + checker-qual + + diff --git a/google-cloud-bigtable/pom.xml b/google-cloud-bigtable/pom.xml index 6f58f5e3f..38c680e0e 100644 --- a/google-cloud-bigtable/pom.xml +++ b/google-cloud-bigtable/pom.xml @@ -235,6 +235,8 @@ truth test + + org.checkerframework checker-qual @@ -246,6 +248,8 @@ truth-proto-extension test + + org.checkerframework checker-qual