Skip to content

Commit

Permalink
update dependencies to latest version (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
muzzammilshahid committed Feb 14, 2024
1 parent 461cce4 commit 23673d3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
25 changes: 11 additions & 14 deletions autobahn/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand Down
2 changes: 1 addition & 1 deletion demo-gallery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 23673d3

Please sign in to comment.