-
Notifications
You must be signed in to change notification settings - Fork 57
/
logstash-input-kinesis.gemspec
34 lines (26 loc) · 1.66 KB
/
logstash-input-kinesis.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# coding: utf-8
version = File.read(File.expand_path(File.join(File.dirname(__FILE__), "VERSION"))).strip
Gem::Specification.new do |spec|
spec.name = "logstash-input-kinesis"
spec.version = version
spec.authors = ["Brian Palmer"]
spec.email = ["[email protected]"]
spec.summary = "Receives events through an AWS Kinesis stream"
spec.description = %q{This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program}
spec.homepage = "https://github.com/logstash-plugins/logstash-input-kinesis"
spec.licenses = ['Apache-2.0']
spec.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib', 'vendor/jar-dependencies/runtime-jars']
# Special flag to let us know this is actually a logstash plugin
spec.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
spec.platform = 'java'
spec.add_runtime_dependency 'logstash-core', '>= 8.9.0'
spec.requirements << "jar 'com.amazonaws:amazon-kinesis-client', '1.15.0'"
spec.requirements << "jar 'com.amazonaws:aws-java-sdk-core', '1.12.408'"
spec.requirements << "jar 'com.amazonaws:aws-java-sdk-sts', '1.12.408'"
spec.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
spec.add_development_dependency 'logstash-devutils'
spec.add_development_dependency 'jar-dependencies', '~> 0.4'
spec.add_development_dependency "logstash-codec-json"
end