Created
October 15, 2013 23:53
-
-
Save ae6rt/7000490 to your computer and use it in GitHub Desktop.
Grouping dependencies in Gradle
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
Group dependencies in Gradle: | |
ext.libraries = [ | |
logging: [ | |
"ch.qos.logback:logback-classic:${versions.logback}", | |
"org.slf4j:log4j-over-slf4j:${versions.slf4j}", | |
"org.slf4j:jul-to-slf4j:${versions.slf4j}" | |
] | |
] | |
... | |
dependencies { | |
compile libraries.logging | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment