-
Notifications
You must be signed in to change notification settings - Fork 10
/
logstash-filter-elastic_integration.gemspec
45 lines (38 loc) · 1.6 KB
/
logstash-filter-elastic_integration.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
35
36
37
38
39
40
41
42
43
44
45
# encoding: utf-8
ELASTIC_INTEGRATION_VERSION = File.read(File.expand_path(File.join(File.dirname(__FILE__), "VERSION"))).strip unless defined?(ELASTIC_INTEGRATION_VERSION)
Gem::Specification.new do |s|
s.name = 'logstash-filter-elastic_integration'
s.version = ELASTIC_INTEGRATION_VERSION
s.licenses = ['ELv2']
s.summary = "Processes Elastic Integrations"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
s.authors = ["Elastic"]
s.email = '[email protected]'
s.homepage = "https://www.elastic.co/logstash"
s.require_paths = %w[lib vendor/jar-dependencies]
# Files to be included in package
s.files = Dir[*%w{
lib/**/*.*
*.gemspec
vendor/jar-dependencies/**/*.jar
VERSION
LICENSE.md
NOTICE.txt
}]
# Special flag to let us know this is actually a logstash plugin
s.metadata = {
"logstash_plugin" => "true",
"logstash_group" => "filter",
"source_code_uri" => "https://github.com/elastic/logstash-filter-elastic_integration",
}
# Gem dependencies
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
s.add_runtime_dependency "logstash-core", ">= 8.7.0"
s.add_development_dependency 'logstash-devutils'
s.platform = "java"
s.post_install_message = <<~NOTICES
This Logstash plugin embeds a subset of Elasticsearch (https://elastic.co/)
and packages from Apache Lucene, including software developed by The Apache
Software Foundation (http://www.apache.org/).
NOTICES
end