From 671d62075c7b45c1df221b74da2be315b0c920c1 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 20 Jan 2015 14:18:09 -0800 Subject: [PATCH] Add commons-cli for the soon-to-be-added CLI options! --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 6d56204..82734c5 100644 --- a/build.gradle +++ b/build.gradle @@ -45,8 +45,14 @@ dependencies { compile("org.apache.curator:${artifactName}:2.7.0") } + /* We need the Kafka client libraries so we can fetch broker metadata + * directly from the cluster + */ compile 'org.apache.kafka:kafka_2.10:0.8.1.+' + /* Needed for command line options parsing */ + compile 'commons-cli:commons-cli:1.2+' + compile 'com.timgroup:java-statsd-client:3.0.1+' testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'