Skip to content

Instantly share code, notes, and snippets.

@amaksoft
Forked from rponte/build.gradle
Created August 22, 2016 16:30
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 amaksoft/7bbcc08e818346e8d2e031a3060cf2fa to your computer and use it in GitHub Desktop.
Save amaksoft/7bbcc08e818346e8d2e031a3060cf2fa to your computer and use it in GitHub Desktop.
Excluding global dependency from all configurations (Gradle)
// ...
configurations {
all*.exclude group: 'xml-apis', module: 'xmlParserAPIs'
}
// Equivalent to:
configurations {
all.collect { configuration ->
configuration.exclude group: 'xml-apis', module: 'xmlParserAPIs'
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment