1
1
Gem ::Specification . new do |s |
2
2
3
3
s . name = 'logstash-output-elasticsearch'
4
- s . version = '0.1.14 '
4
+ s . version = '0.1.15 '
5
5
s . licenses = [ 'apache-2.0' ]
6
6
s . summary = "Logstash Output to Elasticsearch"
7
7
s . description = "Output events to elasticsearch"
@@ -28,7 +28,6 @@ Gem::Specification.new do |s|
28
28
s . add_runtime_dependency 'stud' , [ '>= 0.0.17' , '~> 0.0' ]
29
29
s . add_runtime_dependency 'cabin' , [ '~> 0.6' ]
30
30
s . add_runtime_dependency 'logstash' , '>= 1.4.0' , '< 2.0.0'
31
- s . add_runtime_dependency 'jar-dependencies'
32
31
33
32
s . add_development_dependency 'ftw' , '~> 0.0.42'
34
33
s . add_development_dependency 'logstash-input-generator'
@@ -37,6 +36,16 @@ Gem::Specification.new do |s|
37
36
if RUBY_PLATFORM == 'java'
38
37
s . platform = RUBY_PLATFORM
39
38
s . add_runtime_dependency "manticore" , '~> 0.3'
39
+ # Currently there is a blocking issue with the latest (3.1.1.0.9) version of
40
+ # `ruby-maven` # and installing jars dependencies. If you are declaring a gem
41
+ # in a gemfile # using the :github option it will make the bundle install crash,
42
+ # before upgrading this gem you need to test the version with any plugins
43
+ # that require jars.
44
+ #
45
+ # Ticket: https://github.com/elasticsearch/logstash/issues/2595
46
+ s . add_runtime_dependency 'jar-dependencies' , '0.1.7'
47
+ s . add_runtime_dependency 'ruby-maven' , '3.1.1.0.8'
48
+ s . add_runtime_dependency "maven-tools" , '1.0.7'
40
49
end
41
50
42
51
s . add_development_dependency 'logstash-devutils'
0 commit comments