Skip to content

Commit 9e7797f

Browse files
committed
fix: [FFM-12578]: Fixes various CVEs
1 parent a5b1846 commit 9e7797f

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@ allprojects {
3838
sourceCompatibility = JavaVersion.VERSION_1_8
3939
}
4040

41+
configurations.configureEach {
42+
resolutionStrategy {
43+
// version overrides for CVE fixes
44+
force 'org.apache.commons:commons-lang3:3.18.0' // CVE-2025-48924
45+
force "ch.qos.logback:logback-classic:1.3.15" // CVE-2024-12798, CVE-2024-12801
46+
force 'com.google.code.gson:gson:2.13.1' // CVE-2025-53864
47+
}
48+
}
49+
4150
apply plugin: 'java-library'
4251
apply plugin: 'org.owasp.dependencycheck'
4352
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-rc-3-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ dependencyResolutionManagement {
4040
version('openapi.generator', '4.3.1')
4141
version('spotless', '7.1.0')
4242
version('depsize', '0.2.0')
43-
version('spotbugs', '6.1.5')
44-
version('depcheck', '9.0.7')
43+
version('spotbugs', '6.2.3')
44+
version('depcheck', '12.1.3')
4545
version('maven.publish', '0.33.0')
4646
}
4747
}

0 commit comments

Comments
 (0)