Skip to content

Commit

Permalink
fix: Added missing dependency
Browse files Browse the repository at this point in the history
jackson-databind uses jackson-core. Without the dependency defined, it was using, for some reason (probably due to swagger transitive dependencies), a different version, making the execution to fail due to mismatched SDK versions.
  • Loading branch information
ctasada committed Apr 3, 2024
1 parent 6cecc3a commit cbf2343
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies {

implementation "com.fasterxml.jackson.core:jackson-annotations"
implementation "com.fasterxml.jackson.core:jackson-core"
permitUnusedDeclared "com.fasterxml.jackson.core:jackson-core"
implementation "com.fasterxml.jackson.core:jackson-databind"

implementation "io.swagger.core.v3:swagger-annotations-jakarta:${swaggerVersion}"
Expand Down

0 comments on commit cbf2343

Please sign in to comment.