diff --git a/build.gradle b/build.gradle index bc234a01..ec29bb50 100644 --- a/build.gradle +++ b/build.gradle @@ -90,6 +90,7 @@ dependencies { implementation('com.github.arteam:simple-json-rpc-server:1.3') { exclude group: 'org.slf4j' } + implementation('com.fasterxml.jackson.core:jackson-databind:2.17.2') implementation('com.sparrowwallet:hummingbird:1.7.3') implementation('co.nstant.in:cbor:0.9') implementation("com.nativelibs4java:bridj${targetName}:0.7-20140918-3") { @@ -128,7 +129,7 @@ dependencies { implementation('io.reactivex.rxjava2:rxjava:2.2.15') implementation('io.reactivex.rxjava2:rxjavafx:2.2.2') implementation('org.apache.commons:commons-lang3:3.7') - implementation('org.apache.commons:commons-compress:1.25.0') + implementation('org.apache.commons:commons-compress:1.27.1') implementation('net.sourceforge.streamsupport:streamsupport:1.7.0') implementation('com.github.librepdf:openpdf:1.3.30') implementation('com.googlecode.lanterna:lanterna:3.1.1') @@ -325,7 +326,7 @@ task packageTarDistribution(type: Tar) { } extraJavaModuleInfo { - module('jackson-core-2.13.2.jar', 'com.fasterxml.jackson.core', '2.13.2') { + module('jackson-core-2.17.2.jar', 'com.fasterxml.jackson.core', '2.17.2') { exports('com.fasterxml.jackson.core') exports('com.fasterxml.jackson.core.async') exports('com.fasterxml.jackson.core.base') @@ -340,11 +341,11 @@ extraJavaModuleInfo { exports('com.fasterxml.jackson.core.util') uses('com.fasterxml.jackson.core.ObjectCodec') } - module('jackson-annotations-2.13.2.jar', 'com.fasterxml.jackson.annotation', '2.13.2') { + module('jackson-annotations-2.17.2.jar', 'com.fasterxml.jackson.annotation', '2.17.2') { requires('com.fasterxml.jackson.core') exports('com.fasterxml.jackson.annotation') } - module('jackson-databind-2.13.2.jar', 'com.fasterxml.jackson.databind', '2.13.2') { + module('jackson-databind-2.17.2.jar', 'com.fasterxml.jackson.databind', '2.17.2') { requires('java.desktop') requires('java.logging') requires('com.fasterxml.jackson.annotation')