Skip to content

Commit 07a25b3

Browse files
Merge pull request #38 from OneLiteFeatherNET/renovate/jackson-monorepo
fix(deps): update jackson monorepo (minor)
2 parents a2840cc + 0004659 commit 07a25b3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

java-client/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
val outDir = layout.buildDirectory.dir("generated/openapi")
88

99
dependencies {
10+
implementation(platform(libs.jackson.bom))
1011
implementation(libs.jackson.core)
1112
implementation(libs.jackson.annotations)
1213
implementation(libs.jackson.databind)
@@ -134,4 +135,4 @@ publishing {
134135
) snapshotsRepoUrl else releasesRepoUrl
135136
}
136137
}
137-
}
138+
}

settings.gradle.kts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencyResolutionManagement {
1616
version("shadow", "9.2.2")
1717
version("velocity", "3.4.0-SNAPSHOT")
1818

19-
version("jackson", "2.19.2")
19+
version("jackson", "2.20.0")
2020
version("jakarta-annotation", "3.0.0")
2121

2222
library(
@@ -30,10 +30,11 @@ dependencyResolutionManagement {
3030
"velocity-api"
3131
).versionRef("velocity")
3232

33-
library("jackson-core", "com.fasterxml.jackson.core", "jackson-core").versionRef("jackson")
34-
library("jackson-annotations", "com.fasterxml.jackson.core", "jackson-annotations").versionRef("jackson")
35-
library("jackson-databind", "com.fasterxml.jackson.core", "jackson-databind").versionRef("jackson")
36-
library("jackson-datatype-jsr310", "com.fasterxml.jackson.datatype", "jackson-datatype-jsr310").versionRef("jackson")
33+
library("jackson-bom", "com.fasterxml.jackson", "jackson-bom").versionRef("jackson")
34+
library("jackson-core", "com.fasterxml.jackson.core", "jackson-core").withoutVersion()
35+
library("jackson-annotations", "com.fasterxml.jackson.core", "jackson-annotations").withoutVersion()
36+
library("jackson-databind", "com.fasterxml.jackson.core", "jackson-databind").withoutVersion()
37+
library("jackson-datatype-jsr310", "com.fasterxml.jackson.datatype", "jackson-datatype-jsr310").withoutVersion()
3738

3839
library("jackson-databind-nullable", "org.openapitools", "jackson-databind-nullable").version("0.2.7")
3940
library("jakarta-annotation-api", "jakarta.annotation", "jakarta.annotation-api").versionRef("jakarta-annotation")

0 commit comments

Comments
 (0)