Skip to content

Commit 331e351

Browse files
committed
update to jackson 2.9.6 due to CVEs
1 parent fc9faa5 commit 331e351

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

build.gradle

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ subprojects {
3333
mavenCentral()
3434
}
3535

36+
ext {
37+
jacksonVersion = '2.9.6'
38+
}
39+
3640
apply plugin: 'maven'
3741
apply plugin: 'maven-publish'
3842
apply plugin: 'java'
@@ -43,11 +47,11 @@ subprojects {
4347

4448
//noinspection GroovyAssignabilityCheck
4549
dependencies {
46-
compile 'com.fasterxml.jackson.core:jackson-core:2.4.2'
47-
compile 'com.fasterxml.jackson.core:jackson-annotations:2.4.2'
48-
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.2'
50+
compile "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
51+
compile "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
52+
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
4953
compile 'com.google.guava:guava:17.0'
50-
compile 'org.slf4j:slf4j-api:1.7.7'
54+
compile 'org.slf4j:slf4j-api:1.7.25'
5155
compile 'commons-codec:commons-codec:1.9'
5256
testCompile 'junit:junit:4.11'
5357
testCompile 'org.powermock:powermock-module-junit4:1.6.6'

0 commit comments

Comments
 (0)