Skip to content

Instantly share code, notes, and snippets.

View carlosmanoel's full-sized avatar

Carlos Manoel de Oliveira carlosmanoel

View GitHub Profile
@rponte
rponte / build.gradle
Created October 9, 2013 16:21
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'
}