Skip to content

Commit fda82d3

Browse files
pboosclaude
andcommitted
CHK-13321: override jackson-bom version to 3.1.1 for GHSA-2m67-wjpj-xhg9
The existing constraint in openapi-validation-core was not sufficient because the Spring Boot dependency management plugin overrides strict version constraints with the BOM-managed version (3.1.0). This adds ext['jackson-bom.version'] = '3.1.1' to the example projects that use the spring-dependency-management plugin, ensuring jackson-core resolves to the patched 3.1.1 version. Closes CHK-13321 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2779eaf commit fda82d3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

examples/example-spring-boot-starter-web/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ plugins {
55
alias(libs.plugins.openapi.generator)
66
}
77

8+
ext['jackson-bom.version'] = '3.1.1'
9+
810
dependencies {
911
implementation project(':examples:examples-common')
1012
implementation project(':spring-boot-starter:spring-boot-starter-web')

examples/example-spring-boot-starter-webflux/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ plugins {
55
alias(libs.plugins.openapi.generator)
66
}
77

8+
ext['jackson-bom.version'] = '3.1.1'
9+
810
dependencies {
911
implementation project(':examples:examples-common')
1012
implementation project(':spring-boot-starter:spring-boot-starter-webflux')

0 commit comments

Comments
 (0)