Skip to content

Commit 746679f

Browse files
committed
Introduce Jackson 3 support in the Gradle build
This commit adds Jackson 3 BOM to Spring Framework platform dependencies and related Javadoc link. See gh-33798
1 parent 46e6783 commit 746679f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ configure([rootProject] + javaProjects) { project ->
8888
// but since 6.0 JSR 250 annotations such as @Resource and @PostConstruct have been replaced by their
8989
// JakartaEE equivalents in the jakarta.annotation package.
9090
//"https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/",
91-
"https://jspecify.dev/docs/api/"
91+
"https://jspecify.dev/docs/api/",
92+
"https://www.javadoc.io/doc/tools.jackson.core/jackson-databind/3.0.0-rc4/"
93+
9294
] as String[]
9395
}
9496

framework-platform/framework-platform.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies {
2121
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0"))
2222
api(platform("org.junit:junit-bom:5.12.2"))
2323
api(platform("org.mockito:mockito-bom:5.17.0"))
24+
api(platform("tools.jackson:jackson-bom:3.0.0-rc4"))
2425

2526
constraints {
2627
api("com.fasterxml:aalto-xml:1.3.2")

0 commit comments

Comments
 (0)