Skip to content

Commit

Permalink
fix: enforce Jackson to use the version from the platform
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Jun 24, 2024
1 parent 90c1363 commit 2aa666b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ dependencies {
compileOnly group: "io.kestra", name: "core", version: kestraVersion

// libs included in the final jar
api group: 'org.apache.pulsar', name: 'pulsar-client', version: '3.2.3'
api (group: 'org.apache.pulsar', name: 'pulsar-client', version: '3.2.3')
// this will enforce Jackson to the version defined in the Platform
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind'
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations'
}


Expand Down

0 comments on commit 2aa666b

Please sign in to comment.