Skip to content

Commit

Permalink
fix: Jackson version from Kestra platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Aug 7, 2024
1 parent 02c98c3 commit ec05dea
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,34 @@ dependencies {

// azure
api platform("com.azure:azure-sdk-bom:1.2.22")
api group: 'com.azure', name: 'azure-identity'
api group: 'com.azure', name: 'azure-storage-blob'
api (group: 'com.azure', name: 'azure-identity') {
// excluded from the driver and included manually after to take the version from the platform
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
exclude group: 'com.fasterxml.jackson.dataformat'
}
api (group: 'com.azure', name: 'azure-storage-blob') {
// excluded from the driver and included manually after to take the version from the platform
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
exclude group: 'com.fasterxml.jackson.dataformat'
}
api (group: 'com.microsoft.azure', name: 'azure-storage', version: '8.6.6') {
// excluded from the driver and included manually after to take the version from the platform
exclude group: 'com.fasterxml.jackson.core'
exclude group: 'com.fasterxml.jackson.datatype'
exclude group: 'com.fasterxml.jackson.dataformat'
}

// this will enforce Jackson to the version defined in the Platform
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations'
api group: 'com.fasterxml.jackson.core', name: 'jackson-core'
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
api group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda'
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-guava'
}


Expand Down

0 comments on commit ec05dea

Please sign in to comment.