This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the plugin compatible with latest Logstash 1.5 rc2 release.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Gem::Specification.new do |s| | ||
|
||
s.name = 'logstash-input-log4j2' | ||
s.version = '5.0' | ||
s.version = '5.1' | ||
s.licenses = ['Apache License (2.0)'] | ||
s.summary = "$summary" | ||
s.summary = "Read events over a TCP socket from a Log4j2 SocketAppender" | ||
s.description = "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" | ||
s.authors = ["Jurriaan Mous"] | ||
s.email = '[email protected]' | ||
|
@@ -19,8 +19,8 @@ Gem::Specification.new do |s| | |
# Special flag to let us know this is actually a logstash plugin | ||
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" } | ||
|
||
# Gem dependencies | ||
s.add_runtime_dependency 'logstash', '>= 1.4.0', '< 2.0.0' | ||
s.platform = 'java' | ||
|
||
s.add_runtime_dependency "logstash-core", '>= 1.4.0', '< 2.0.0' | ||
s.add_development_dependency 'logstash-devutils' | ||
end | ||
end |