Skip to content

Commit 6544f41

Browse files
authored
Update jrjackson, jackson versions (#11044)
Also splits out jackson and jackson databind versions to allow separate revisions for databind. Backport of #11040
1 parent 68ae329 commit 6544f41

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

logstash-core/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ description = """Logstash Core Java"""
99
version = versionMap['logstash-core']
1010
String jrubyVersion = versionMap['jruby']['version']
1111
String jacksonVersion = versionMap['jackson']
12+
String jacksonDatabindVersion = versionMap['jackson-databind']
1213

1314
repositories {
1415
mavenCentral()
@@ -133,7 +134,7 @@ dependencies {
133134
compile 'commons-codec:commons-codec:1.11'
134135
// Jackson version moved to versions.yml in the project root (the JrJackson version is there too)
135136
compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
136-
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
137+
compile "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
137138
compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
138139
compile 'org.codehaus.janino:janino:3.0.11'
139140
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jacksonVersion}"

versions.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ jruby:
2121
# Note: this file is copied to the root of logstash-core because its gemspec needs it when
2222
# bundler evaluates the gemspec via bin/logstash
2323
# Ensure Jackson version here is kept in sync with version used by jrjackson gem
24-
jrjackson: 0.4.8
25-
jackson: 2.9.8
24+
jrjackson: 0.4.9
25+
jackson: 2.9.9
26+
jackson-databind: 2.9.9.3

0 commit comments

Comments
 (0)