Skip to content

Instantly share code, notes, and snippets.

@Talhaali00
Last active March 29, 2024 03:49
Show Gist options
  • Save Talhaali00/7b9e1cadf19b9dc5141cd033aa4e6172 to your computer and use it in GitHub Desktop.
Save Talhaali00/7b9e1cadf19b9dc5141cd033aa4e6172 to your computer and use it in GitHub Desktop.
Resolution Strategy for 1.31.0 that needs to be added in the root build.gradle file
configurations.configureEach {
resolutionStrategy.eachDependency {
if (requested.group == "org.bouncycastle" && requested.name == "bcprov-jdk15on") {
useTarget("org.bouncycastle:bcprov-jdk18on:1.77")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment