aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-07-20 17:59:19 -0700
committerEric Anderson <ejona@google.com>2018-07-20 22:30:40 -0700
commitc30e509621feedb0c9f62e6801c2a0c3a3c904fe (patch)
treef76af935a1a99d3fcfefa04a0e46c62960433865 /build.gradle
parent64d272ae7ce6286bda110f5d43c896e56b671d19 (diff)
downloadgrpc-grpc-java-c30e509621feedb0c9f62e6801c2a0c3a3c904fe.tar.gz
Downgrade to Truth 0.41 for Java 7 support
gae-jdk7 in particular is failing with the 0.42 Truth because it depends on org.checkerframework:checker-qual 2.5.3 instead of 2.0.0.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 1bf3cd929..d2091f0e3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -229,7 +229,7 @@ subprojects {
// Test dependencies.
junit: 'junit:junit:4.12',
mockito: 'org.mockito:mockito-core:1.9.5',
- truth: 'com.google.truth:truth:0.42',
+ truth: 'com.google.truth:truth:0.41',
guava_testlib: 'com.google.guava:guava-testlib:20.0',
// Benchmark dependencies
@@ -250,7 +250,9 @@ subprojects {
// care for artifacts used as libraries by others.
if (!(project.name in [
'grpc-benchmarks',
- 'grpc-interop-testing'
+ 'grpc-interop-testing',
+ 'grpc-gae-interop-testing-jdk7',
+ 'grpc-gae-interop-testing-jdk8',
])) {
resolutionStrategy.failOnVersionConflict()
}