Skip to content

Instantly share code, notes, and snippets.

@liangzai-cool
Forked from rponte/build.gradle
Created September 19, 2018 14:08
Show Gist options
  • Save liangzai-cool/2ab06264f0ccc42103ec661aed81a105 to your computer and use it in GitHub Desktop.
Save liangzai-cool/2ab06264f0ccc42103ec661aed81a105 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