From 1c7543f7305d9f24e857eb842717beefb485fbb7 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Mon, 28 Sep 2015 08:43:50 -0700 Subject: [PATCH] Upgrade to a Kafka (JVM) version which uses Scala 2.11 Scala 2.10 is three years old and it appears to me tha 2.10 is moderately broken and old, at that 2.11 is the bare minimum folks should be using these days (see also: https://github.com/twitter/scrooge/pull/198) --- hermann.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hermann.gemspec b/hermann.gemspec index 1de0c13..903ae6a 100644 --- a/hermann.gemspec +++ b/hermann.gemspec @@ -35,9 +35,9 @@ Gem::Specification.new do |s| # dependency of your gem. if it is a runtime dependencies the require_jars # file will be overwritten during installation. s.add_dependency 'jar-dependencies', ['~> 0.1', '>= 0.1.10'] - s.requirements << "jar org.apache.kafka:kafka_2.10, ~>0.8.1.1" + s.requirements << "jar org.apache.kafka:kafka_2.11, ~> 0.8.2.2" # use log4j-1.2.16+ to as 1.2.15 declares deps which are not in maven central and causes the dep resolution to fail - s.requirements << "jar log4j:log4j, ~>1.2.16" + s.requirements << "jar log4j:log4j, ~> 1.2.16" s.require_paths = ["lib"] s.platform = 'java' else