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
This commit is contained in:
parent
46e6783593
commit
746679f7a7
|
@ -88,7 +88,9 @@ configure([rootProject] + javaProjects) { project ->
|
|||
// but since 6.0 JSR 250 annotations such as @Resource and @PostConstruct have been replaced by their
|
||||
// JakartaEE equivalents in the jakarta.annotation package.
|
||||
//"https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/",
|
||||
"https://jspecify.dev/docs/api/"
|
||||
"https://jspecify.dev/docs/api/",
|
||||
"https://www.javadoc.io/doc/tools.jackson.core/jackson-databind/3.0.0-rc4/"
|
||||
|
||||
] as String[]
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ dependencies {
|
|||
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.8.0"))
|
||||
api(platform("org.junit:junit-bom:5.12.2"))
|
||||
api(platform("org.mockito:mockito-bom:5.17.0"))
|
||||
api(platform("tools.jackson:jackson-bom:3.0.0-rc4"))
|
||||
|
||||
constraints {
|
||||
api("com.fasterxml:aalto-xml:1.3.2")
|
||||
|
|
Loading…
Reference in New Issue