Created
August 8, 2016 04:39
-
-
Save monkey-codes/d2908935000c754c6b87aeecb176b069 to your computer and use it in GitHub Desktop.
Gradle dependencies to setup logstash logback
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
dependencies { | |
ext { | |
logbackVersion = '1.1.6' | |
slf4jApiVersion = '1.7.15' | |
logStashLogbackEncoderVersion = '4.7' | |
} | |
... | |
compile("ch.qos.logback:logback-classic:$logbackVersion") | |
compile("ch.qos.logback:logback-core:$logbackVersion") | |
compile("ch.qos.logback:logback-access:$logbackVersion") | |
compile("org.slf4j:slf4j-api:$slf4jApiVersion") | |
compile("org.slf4j:jcl-over-slf4j:$slf4jApiVersion") | |
compile("org.slf4j:log4j-over-slf4j:$slf4jApiVersion") | |
compile("net.logstash.logback:logstash-logback-encoder:$logStashLogbackEncoderVersion") | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment