mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
Update jrjackson, jackson versions
Also splits out jackson and jackson databind versions to allow separate revisions for databind. Fixes #11040
This commit is contained in:
parent
2198bf5076
commit
f860d29667
2 changed files with 5 additions and 3 deletions
|
@ -9,6 +9,7 @@ description = """Logstash Core Java"""
|
|||
version = versionMap['logstash-core']
|
||||
String jrubyVersion = versionMap['jruby']['version']
|
||||
String jacksonVersion = versionMap['jackson']
|
||||
String jacksonDatabindVersion = versionMap['jackson-databind']
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -135,7 +136,7 @@ dependencies {
|
|||
compile 'commons-codec:commons-codec:1.11'
|
||||
// Jackson version moved to versions.yml in the project root (the JrJackson version is there too)
|
||||
compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
|
||||
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
|
||||
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
|
||||
compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
|
||||
compile 'org.codehaus.janino:janino:3.0.11'
|
||||
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jacksonVersion}"
|
||||
|
|
|
@ -21,5 +21,6 @@ jruby:
|
|||
# Note: this file is copied to the root of logstash-core because its gemspec needs it when
|
||||
# bundler evaluates the gemspec via bin/logstash
|
||||
# Ensure Jackson version here is kept in sync with version used by jrjackson gem
|
||||
jrjackson: 0.4.8
|
||||
jackson: 2.9.8
|
||||
jrjackson: 0.4.9
|
||||
jackson: 2.9.9
|
||||
jackson-databind: 2.9.9.3
|
Loading…
Add table
Add a link
Reference in a new issue