Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Forked from michail-nikolaev/build.gradle
Created July 30, 2016 00:22
Show Gist options
  • Save diegopacheco/989227c3a9f5e952ab02c0367c93555f to your computer and use it in GitHub Desktop.
Save diegopacheco/989227c3a9f5e952ab02c0367c93555f 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