diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2020-06-22 11:54:52 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-06-22 20:04:33 +0000 |
commit | 6b806ebf8e189b2abf7d29c964abf09a3a3beb8c (patch) | |
tree | 93753908bf2557ac825636e76e4b75a02043cc23 /build.gradle | |
parent | a6327e0ebb320e8c34efdf5c54bfefff6b9867d2 (diff) | |
download | sonarqube-6b806ebf8e189b2abf7d29c964abf09a3a3beb8c.tar.gz sonarqube-6b806ebf8e189b2abf7d29c964abf09a3a3beb8c.zip |
Upgrade Jackson Dataformat dependencies to 2.10.4
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index a296cd6ccd4..7fd0e645ed1 100644 --- a/build.gradle +++ b/build.gradle @@ -204,11 +204,16 @@ subprojects { dependency 'commons-dbutils:commons-dbutils:1.7' dependency 'commons-io:commons-io:2.7' dependency 'commons-lang:commons-lang:2.6' - dependencySet(group: 'com.fasterxml.jackson.core', version: '2.10.3') { - entry 'jackson-core' + dependencySet(group: 'com.fasterxml.jackson.core', version: '2.10.4') { entry 'jackson-annotations' + entry 'jackson-core' entry 'jackson-databind' } + dependencySet(group: 'com.fasterxml.jackson.dataformat', version: '2.10.4') { + entry 'jackson-dataformat-cbor' + entry 'jackson-dataformat-smile' + entry 'jackson-dataformat-yaml' + } dependency 'com.eclipsesource.minimal-json:minimal-json:0.9.5' dependencySet(group: 'com.github.scribejava', version: '6.9.0') { entry 'scribejava-apis' |