Skip to content

Commit

Permalink
Backport 'Fix Guava dependency resolution'
Browse files Browse the repository at this point in the history
Closes gh-3967
  • Loading branch information
jonatan-ivanov committed Jul 7, 2023
1 parent da49c5e commit 80d5d63
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,11 @@ subprojects {
implementation platform('io.netty:netty-bom:4.1.+')
}
}
configurations.configureEach {
// see https://github.com/google/guava/releases/tag/v32.1.0
// "Reporting dependencies that overlap with Guava"
resolutionStrategy.capabilitiesResolution.withCapability('com.google.guava:listenablefuture') {
select('com.google.guava:guava:0')
}
}
}

0 comments on commit 80d5d63

Please sign in to comment.