Last active
August 29, 2015 14:05
-
-
Save yusuke2255/0398ce25e7488993302f to your computer and use it in GitHub Desktop.
Exclude subproject's module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// OK | |
testCompile (project(':tests:common')){ | |
exclude group: 'junit' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NG | |
testCompile project(':tests:common'){ | |
exclude group: 'junit' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment