Skip to content

Instantly share code, notes, and snippets.

@ok3141
Forked from michail-nikolaev/build.gradle
Created May 9, 2018 12:16
Show Gist options
  • Save ok3141/c5b7946a397f2a111e64c424f7d9ec03 to your computer and use it in GitHub Desktop.
Save ok3141/c5b7946a397f2a111e64c424f7d9ec03 to your computer and use it in GitHub Desktop.
Gradle - force transitive dependency version for some group
apply plugin: 'java'
configurations.all {
resolutionStrategy {
eachDependency { DependencyResolveDetails details ->
//specifying a fixed version for all libraries with 'org.gradle' group
if (details.requested.group == 'org.springframework') {
details.useVersion "$springVersion"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment