From 5ac5805febd8dc80b65347bc9e2190fd4f2636cb Mon Sep 17 00:00:00 2001 From: Mattis Bratland Date: Sat, 9 May 2026 22:59:36 +0200 Subject: [PATCH] chore(deps): add jackson bom to align resolved versions --- build.gradle.kts | 4 ++-- gradle/libs.versions.toml | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f6475cf..4a9c9dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,8 +22,9 @@ repositories { mavenCentral() } dependencies { implementation(kotlin("stdlib")) - implementation(platform(libs.koin.bom)) implementation(platform(libs.netty.bom)) + implementation(platform(libs.koin.bom)) + implementation(platform(libs.jackson.bom)) implementation(libs.koin.core) implementation(libs.bundles.fabric8) implementation(libs.bundles.operator) @@ -35,7 +36,6 @@ dependencies { implementation(libs.micrometer.registry.prometheus) testImplementation(kotlin("test")) - testImplementation(platform(libs.netty.bom)) testImplementation(libs.mockk) testImplementation(libs.awaitility.kotlin) testImplementation(libs.operator.framework.junit5) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 40a1b24..5a9cee5 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -22,7 +22,9 @@ operator-framework-core = { module = "io.javaoperatorsdk:operator-framework-core operator-micrometer-support = { module = "io.javaoperatorsdk:micrometer-support", version.ref = "operatorSdk" } hoplite-core = { module = "com.sksamuel.hoplite:hoplite-core", version.ref = "hoplite" } hoplite-yaml = { module = "com.sksamuel.hoplite:hoplite-yaml", version.ref = "hoplite" } -jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" } + +jackson-bom = { module = "com.fasterxml.jackson:jackson-bom", version.ref = "jackson"} +jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin" } http4k-bom = { module = "org.http4k:http4k-bom", version.ref = "http4k" } http4k-server-jetty = { module = "org.http4k:http4k-server-jetty" }