diff --git a/autobahn/build.gradle b/autobahn/build.gradle index 21ff3e34..f84ace65 100644 --- a/autobahn/build.gradle +++ b/autobahn/build.gradle @@ -20,26 +20,23 @@ def SONATYPE_USER = System.getenv().containsKey('SONATYPE_USER') ? System.getenv def SONATYPE_PASS = System.getenv().containsKey('SONATYPE_PASS') ? System.getenv('SONATYPE_PASS'): '' dependencies { - api 'com.fasterxml.jackson.core:jackson-core:2.12.3' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3' - implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.12.3' - implementation 'org.msgpack:jackson-dataformat-msgpack:0.8.22' + api 'com.fasterxml.jackson.core:jackson-core:2.16.1' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.16.1' + implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.16.1' + implementation 'org.msgpack:jackson-dataformat-msgpack:0.9.8' + implementation 'org.web3j:core:5.0.0' + implementation 'org.web3j:abi:5.0.0' + implementation 'org.web3j:utils:5.0.0' if (IS_ANDROID) { implementation 'com.github.joshjdevl.libsodiumjni:libsodium-jni-aar:2.0.2' - implementation 'org.web3j:core:4.6.0-android' - implementation 'org.web3j:abi:4.6.0-android' - implementation 'org.web3j:utils:4.6.0-android' } else { implementation 'com.github.joshjdevl.libsodiumjni:libsodium-jni:2.0.2' - implementation 'org.web3j:core:4.6.0' - implementation 'org.web3j:abi:4.6.0' - implementation 'org.web3j:utils:4.6.0' - implementation 'org.json:json:20210307' - implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.3' + implementation 'org.json:json:20240205' + implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.5' } if (IS_NETTY) { - implementation 'io.netty:netty-codec-http:4.1.63.Final' - implementation 'io.netty:netty-handler:4.1.63.Final' + implementation 'io.netty:netty-codec-http:4.1.106.Final' + implementation 'io.netty:netty-handler:4.1.106.Final' } } diff --git a/demo-gallery/build.gradle b/demo-gallery/build.gradle index 39c32c17..c4ea851b 100644 --- a/demo-gallery/build.gradle +++ b/demo-gallery/build.gradle @@ -47,7 +47,7 @@ if (plugins.hasPlugin(project.PLUGIN_ANDROID_APP)) { implementation "com.google.android.material:material:1.11.0" implementation 'com.basgeekball:awesome-validation:4.2' - implementation 'org.web3j:crypto:4.6.0-android' + implementation 'org.web3j:crypto:5.0.0' implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava' } } else if (project.IS_NEXT) { diff --git a/gradle.properties b/gradle.properties index fa9be7f2..b8200524 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,4 +5,4 @@ org.gradle.parallel = true org.gradle.configureondemand = true org.gradle.vfs.watch = true org.gradle.jvmargs=-Xmx1024m - +android.jetifier.ignorelist = jackson-core