File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ description = """Logstash Core Java"""
99version = versionMap[' logstash-core' ]
1010String jrubyVersion = versionMap[' jruby' ][' version' ]
1111String jacksonVersion = versionMap[' jackson' ]
12+ String jacksonDatabindVersion = versionMap[' jackson-databind' ]
1213
1314repositories {
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} "
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments