Remove the exclusion syntax from the kafka jar-dependency which breaks in the latest jbundler

The version of jar-dependencies we were testing against was yanked and with
jbundler and jar-dependencies (0.7.[3-4] and 0.1.10 respectively) I cannot get
Hermann to successfully install with jbundler
This commit is contained in:
R. Tyler Croy 2015-06-18 17:11:36 -07:00
parent 6fb9e064b4
commit 45fe45cb96
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 3 additions and 3 deletions

View File

@ -33,8 +33,8 @@ Gem::Specification.new do |s|
# IMPORTANT: make sure that jar-dependencies is only a development
# 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.9'
s.requirements << "jar org.apache.kafka:kafka_2.10, ~>0.8.1.1, ['junit:junit']"
s.add_dependency 'jar-dependencies', '~> 0.1.10'
s.requirements << "jar org.apache.kafka:kafka_2.10, ~>0.8.1.1"
# 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.require_paths = ["lib"]

View File

@ -1,3 +1,3 @@
module Hermann
VERSION = '0.24.0'
VERSION = '0.24.1'
end