From 3a61835cf6d8d68b6a1188db1b212545a8b7535b Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sat, 17 Jan 2015 14:34:00 -0800 Subject: [PATCH] Bring in the curator-recipes package to utilize TreeCache and some of their goodies --- build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f48a3ec..301b34e 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,13 @@ repositories { dependencies { compile 'org.codehaus.groovy:groovy-all:2.3.9+' - compile 'org.apache.curator:curator-framework:2.4.0' + [ + 'curator-framework', + 'curator-recipes', + ].each { artifactName -> + compile("org.apache.curator:${artifactName}:2.7.0") + } + compile 'org.apache.kafka:kafka_2.10:0.8.1.+' compile 'com.timgroup:java-statsd-client:3.0.1+'