From 00b3e378b0de0c7d63740fc416caa3c192d455b7 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 12 Mar 2020 14:35:01 -0700 Subject: [PATCH] 0.23.2 - Dependency updates. --- build.gradle | 4 ++-- internal/runtime_shared/build.gradle | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 5e2cc668..e917cf61 100755 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ subprojects { apply plugin: 'java-library' apply plugin: 'maven' - version = '0.23.1' + version = '0.23.2' sourceCompatibility = 1.7 targetCompatibility = 1.7 @@ -30,6 +30,6 @@ subprojects { } wrapper { - gradleVersion = '5.6.2' + gradleVersion = '5.6.4' } diff --git a/internal/runtime_shared/build.gradle b/internal/runtime_shared/build.gradle index 12e62c63..d57f3785 100644 --- a/internal/runtime_shared/build.gradle +++ b/internal/runtime_shared/build.gradle @@ -4,12 +4,11 @@ description = 'Shared Runtime for the SDK' dependencies { api 'org.bouncycastle:bcprov-jdk15on:1.64' - api 'io.netty:netty-all:4.1.42.Final' + api 'io.netty:netty-all:4.1.47.Final' //jzlib is an optional dependency of netty, it is possible to trigger usage implementation 'com.jcraft:jzlib:1.1.3' - api 'com.beust:jcommander:1.72' - api 'org.msgpack:jackson-dataformat-msgpack:0.8.18' + api 'com.beust:jcommander:1.78' + api 'org.msgpack:jackson-dataformat-msgpack:0.8.20' //the following overrides the dependency in jackson-dataformat-msgpack - //and can be removed once msgpack catches up to 2.9.10 - api 'com.fasterxml.jackson.core:jackson-databind:2.9.10' + api 'com.fasterxml.jackson.core:jackson-databind:2.10.3' }