From f4042894fed1bc0d1f87d37ea51d126e45ff0c44 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 30 Jan 2015 07:30:15 -0800 Subject: [PATCH] Add a compile and runtime dependency on the metrics core and graphite code References #17 --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index bda8333..b02d3af 100644 --- a/build.gradle +++ b/build.gradle @@ -57,6 +57,10 @@ dependencies { compile 'com.timgroup:java-statsd-client:3.1.2+' + ['metrics-core', 'metrics-graphite'].each { artifactName -> + compile "io.dropwizard.metrics:${artifactName}:3.1.0" + } + /* Logback is to be used for logging through the app */ compile 'ch.qos.logback:logback-classic:1.1.2+'