Skip to content

Instantly share code, notes, and snippets.

@carlosmanoel
Forked from rponte/build.gradle
Created September 14, 2024 22:28
Show Gist options
  • Select an option

  • Save carlosmanoel/37e1ca4188c399379be4414402541579 to your computer and use it in GitHub Desktop.

Select an option

Save carlosmanoel/37e1ca4188c399379be4414402541579 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