Skip to content

Commit 80d5d63

Browse files
Backport 'Fix Guava dependency resolution'
Closes gh-3967
1 parent da49c5e commit 80d5d63

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dependencies.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,11 @@ subprojects {
100100
implementation platform('io.netty:netty-bom:4.1.+')
101101
}
102102
}
103+
configurations.configureEach {
104+
// see https://github.com/google/guava/releases/tag/v32.1.0
105+
// "Reporting dependencies that overlap with Guava"
106+
resolutionStrategy.capabilitiesResolution.withCapability('com.google.guava:listenablefuture') {
107+
select('com.google.guava:guava:0')
108+
}
109+
}
103110
}

0 commit comments

Comments
 (0)