Guest User

Untitled

a guest
Dec 16th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. The following part of a build file shows how we can exclude a dependency from all configurations:
  2.  
  3. ...
  4. configurations {
  5. all*.exclude group: 'xml-apis', module: 'xmlParserAPIs'
  6. }
  7.  
  8. // Equivalent to:
  9. configurations {
  10. all.collect { configuration ->
  11. configuration.exclude group: 'xml-apis', module: 'xmlParserAPIs'
  12. }
  13. }
  14. ...
Add Comment
Please, Sign In to add comment