Skip to content

Commit

Permalink
build: remove jackson dependency constraints
Browse files Browse the repository at this point in the history
These prescribed versions are now updated in the transitive dependency.
  • Loading branch information
tronghn committed Dec 9, 2024
1 parent 3f8ec4e commit 97113fe
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,30 +66,6 @@ subprojects {
implementation("io.ktor:ktor-server-cio:${ktorVersion}")
implementation("io.ktor:ktor-server-content-negotiation:${ktorVersion}")
implementation("io.ktor:ktor-serialization-jackson:${ktorVersion}")
constraints {
// require a newer patch version to fix JsonAnySetter:
// https://github.com/FasterXML/jackson-databind/issues/4508
add("implementation", "com.fasterxml.jackson.core:jackson-annotations") {
version {
require("2.18.1")
}
}
add("implementation", "com.fasterxml.jackson.core:jackson-core") {
version {
require("2.18.1")
}
}
add("implementation", "com.fasterxml.jackson.core:jackson-databind") {
version {
require("2.18.1")
}
}
add("implementation", "com.fasterxml.jackson.module:jackson-module-kotlin") {
version {
require("2.18.1")
}
}
}
implementation("io.ktor:ktor-client-cio:${ktorVersion}")
implementation("io.ktor:ktor-client-core:${ktorVersion}")
implementation("io.ktor:ktor-client-content-negotiation:${ktorVersion}")
Expand Down

0 comments on commit 97113fe

Please sign in to comment.