Skip to content

Commit

Permalink
upgrade jackson-databind because of security issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-schmidt committed Sep 18, 2019
1 parent 72d9f92 commit 9a566b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ dependencies {
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'com.fasterxml.jackson.core' && details.requested.name == 'jackson-databind') {
details.useVersion '2.9.9.3'
details.because 'CVE-2019-12814'
details.useVersion '2.10.0.pr3'
details.because 'CVE-2019-16335, CVE-2019-14540'
}
if (details.requested.group == 'commons-beanutils' && details.requested.name == 'commons-beanutils') {
details.useVersion '1.9.4'
Expand Down

0 comments on commit 9a566b5

Please sign in to comment.