Skip to content

Commit 80d5d63

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

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

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)