Skip to content

Commit

Permalink
Merge pull request #136 from NordicSemiconductor/bugfix/dependencies
Browse files Browse the repository at this point in the history
Reverting jackson lib to 2.13.5
  • Loading branch information
philips77 authored Jan 25, 2024
2 parents ca0577a + bef431b commit 66828e5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions mcumgr-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@ dependencies {
// Kotlin
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'

// Import CBOR parser
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
// Import CBOR parser - version 2.14+ requires Android 8
// See: https://github.com/NordicSemiconductor/Android-nRF-Connect-Device-Manager/issues/135
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.13.5' // don't update
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.5' // don't update
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.5' // don't update

// Test
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
Expand Down

0 comments on commit 66828e5

Please sign in to comment.