Mirror 5.0 to master's version (#5803)

This commit is contained in:
Suyog Rao 2016-08-22 19:22:07 +00:00 committed by GitHub
parent f35c416893
commit 16aefd8ecb
9 changed files with 24 additions and 22 deletions

View file

@ -5,4 +5,4 @@
# Note to authors: this should not include dashes because 'gem' barfs if
# you include a dash in the version string.
LOGSTASH_CORE_EVENT_JAVA_VERSION = "5.0.0-alpha5"
LOGSTASH_CORE_EVENT_JAVA_VERSION = "5.0.0-alpha6"

View file

@ -3,12 +3,12 @@ begin
require 'jar_dependencies'
rescue LoadError
require 'com/fasterxml/jackson/core/jackson-databind/2.7.3/jackson-databind-2.7.3.jar'
require 'com/fasterxml/jackson/core/jackson-annotations/2.7.3/jackson-annotations-2.7.3.jar'
require 'com/fasterxml/jackson/core/jackson-annotations/2.7.0/jackson-annotations-2.7.0.jar'
require 'com/fasterxml/jackson/core/jackson-core/2.7.3/jackson-core-2.7.3.jar'
end
if defined? Jars
require_jar( 'com.fasterxml.jackson.core', 'jackson-databind', '2.7.3' )
require_jar( 'com.fasterxml.jackson.core', 'jackson-annotations', '2.7.3' )
require_jar( 'com.fasterxml.jackson.core', 'jackson-annotations', '2.7.0' )
require_jar( 'com.fasterxml.jackson.core', 'jackson-core', '2.7.3' )
end