Skip to content

Commit

Permalink
Add dependencies to address vulnerability issues
Browse files Browse the repository at this point in the history
Included commons-io:2.17.0 and jetty-http:12.0.15 in test dependencies to mitigate known vulnerabilities. This ensures the security and stability of our test environment.
  • Loading branch information
kousen committed Nov 15, 2024
1 parent 92d4e00 commit 98aaa15
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ dependencies {
testImplementation(libs.bundles.mockito)
testImplementation(libs.wiremock)
testImplementation("com.jayway.jsonpath:json-path:2.9.0")

// Make vulnerability issues go away
testImplementation("commons-io:commons-io:2.17.0")
testImplementation("org.eclipse.jetty:jetty-http:12.0.15")
}

//tasks.withType<JavaCompile>().configureEach {
Expand Down

0 comments on commit 98aaa15

Please sign in to comment.