Skip to content

Instantly share code, notes, and snippets.

@OleksandrKucherenko
Created March 31, 2019 18:01
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 OleksandrKucherenko/6a07f56a399b0dcd616d23ac8ce55e3d to your computer and use it in GitHub Desktop.
Save OleksandrKucherenko/6a07f56a399b0dcd616d23ac8ce55e3d to your computer and use it in GitHub Desktop.
// Force Jacoco Agent version upgrade
subprojects {
configurations.all {
resolutionStrategy {
eachDependency { details ->
if ('org.jacoco' == details.requested.group) {
details.useVersion "${jacocoVersion}"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment