File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def versions = [
172172 lombok : ' 1.18.38' ,
173173 mapStruct : ' 1.3.0.Final' ,
174174 pact_version : ' 4.1.34' ,
175- piTest : ' 1.20.0 ' ,
175+ piTest : ' 1.20.1 ' ,
176176 probateCommonsVersion : ' 2.2.2' ,
177177 restAssured : ' 5.5.5' ,
178178 serenity : ' 4.2.34' ,
@@ -322,6 +322,17 @@ dependencies {
322322 }
323323}
324324
325+ configurations. configureEach {
326+ resolutionStrategy {
327+ eachDependency { details ->
328+ // Resolve CVE‑2025‑48976
329+ if (details. requested. name == ' commons-fileupload' ) {
330+ details. useVersion ' 1.6.0'
331+ }
332+ }
333+ }
334+ }
335+
325336tasks. register(' fortifyScan' , JavaExec ) {
326337 mainClass. set(" uk.gov.hmcts.fortifyclient.FortifyClientMainApp" )
327338 classpath + = sourceSets. test. runtimeClasspath
Original file line number Diff line number Diff line change 1818 -->
1919 <cve >CVE-2025-48734</cve >
2020 </suppress >
21- <suppress until = " 2025-10-15" >
22- <cve >CVE-2025-48976</cve >
23- </suppress >
2421 <suppress until = " 2025-10-15" >
2522 <!--
2623 Apache Commons Lang ClassUtils.getClass(...) can throw an Error
You can’t perform that action at this time.
0 commit comments