Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repositories {

dependencies {
implementation(platform("com.google.cloud:spring-cloud-gcp-dependencies:8.1.0"))
implementation(platform("tools.jackson:jackson-bom:3.1.5"))
implementation(platform("tools.jackson:jackson-bom:3.2.1"))

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep Jackson annotations aligned with the 3.2 BOM

When this platform is raised to Jackson 3.2.x, the BOM manages com.fasterxml.jackson.core:jackson-annotations at 2.22, but the existing resolutionStrategy above still forces every com.fasterxml.jackson.core dependency, including annotations, to 2.21. Jackson databind 3.2 references new 2.22 annotation types such as JsonApplyView during introspection, so server JSON serialization/deserialization can fail at runtime with NoClassDefFoundError even though dependency resolution succeeds; please update or remove that force together with the BOM bump.

Useful? React with 👍 / 👎.

testImplementation(platform("org.junit:junit-bom:6.1.3"))

implementation('org.springframework.boot:spring-boot-starter-webmvc') {
Expand Down