Skip to content

Commit

Permalink
Require Logback 1.4.12 in the Spring Boot example to fix CVE-2023-6378.
Browse files Browse the repository at this point in the history
Resolves #199. (#200)

Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable authored Dec 1, 2023
1 parent fc36fe0 commit cef62fc
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ dependencies {
testImplementation(springLibs.boot.test.autoconfigure)
testImplementation(opensearchLibs.testcontainers)
testImplementation(project(":spring-data-opensearch-test-autoconfigure"))

constraints {
implementation("ch.qos.logback:logback-classic") {
version {
require("1.4.12")
}
because("Fixes CVE-2023-6378")
}
}
}

description = "Spring Data OpenSearch Spring Boot Example Project"
Expand Down

0 comments on commit cef62fc

Please sign in to comment.