Skip to content
Merged
Changes from 1 commit
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
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ ext {
jackson_version = "2.22.0"
}

configurations.testRuntimeClasspath {
// handlebars 4.3.1 (pulled in by wiremock) has a path traversal CVE fixed in 4.5.2.
// WireMock 3.x hasn't backported the fix — only the 4.x beta line has.
// We force the core jar only; handlebars-helpers cannot be forced to 4.5.2 because
// NumberHelper moved packages between versions, which breaks WireMock at runtime.
resolutionStrategy.force 'com.github.jknack:handlebars:4.5.2'
}

dependencies {
implementation "com.google.code.findbugs:jsr305:3.0.2"

Expand Down
Loading