Skip to content

Commit

Permalink
Use jackson-core (2.13.1) libraries from dao-node
Browse files Browse the repository at this point in the history
Glassfish depends on features of a newer jackson library. Thus, we
cannot use the ones from the main Bisq project.
  • Loading branch information
alvasw committed Jul 13, 2023
1 parent b4ddea1 commit 22b47c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ dependencies {

implementation 'bisq:assets'
implementation 'bisq:common'
implementation 'bisq:core'
implementation('bisq:core') {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-annotations'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
implementation 'bisq:p2p'

implementation libs.chimp.jsocks
Expand Down
7 changes: 4 additions & 3 deletions platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ dependencies {
constraints {
api 'org.apache.commons:commons-lang3:3.11'

api 'com.fasterxml.jackson.core:jackson-annotations:2.12.1'
api 'com.fasterxml.jackson.core:jackson-core:2.12.1'
api 'com.fasterxml.jackson.core:jackson-databind:2.12.1'
api 'com.fasterxml.jackson.core:jackson-annotations:2.13.1'
api 'com.fasterxml.jackson.core:jackson-core:2.13.1'
api 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
api 'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.12.7'
}
}

0 comments on commit 22b47c7

Please sign in to comment.