Skip to content

Instantly share code, notes, and snippets.

@hsartoris-bard
Created October 12, 2020 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hsartoris-bard/02a12393b36542a2d2da039226420e7a to your computer and use it in GitHub Desktop.
Save hsartoris-bard/02a12393b36542a2d2da039226420e7a to your computer and use it in GitHub Desktop.
cas-server-support-webauthn jackson version override
buildscript {
repositories {
/* ... */
}
apply from: rootProject.file("gradle/overrides.gradle")
dependencies {
/* ... */
}
}
/* gradle/overrides.gradle */
configurations.all {
resolutionStrategy {
if (!Boolean.getBoolean("skipVersionConflict")) {
failOnVersionConflict()
}
preferProjectModules()
eachDependency { DependencyResolveDetails details ->
if (details.requested.group.startsWith("com.fasterxml.jackson")) {
details.useVersion("2.11.2")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment