Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ allprojects {
sourceCompatibility = JavaVersion.VERSION_1_8
}

configurations.configureEach {
resolutionStrategy {
// version overrides for CVE fixes
force 'org.apache.commons:commons-lang3:3.18.0' // CVE-2025-48924
force "ch.qos.logback:logback-classic:1.3.15" // CVE-2024-12798, CVE-2024-12801
force 'com.google.code.gson:gson:2.13.1' // CVE-2025-53864
}
}

apply plugin: 'java-library'
apply plugin: 'org.owasp.dependencycheck'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-rc-3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencyResolutionManagement {
version('openapi.generator', '4.3.1')
version('spotless', '7.1.0')
version('depsize', '0.2.0')
version('spotbugs', '6.1.5')
version('depcheck', '9.0.7')
version('spotbugs', '6.2.3')
version('depcheck', '12.1.3')
version('maven.publish', '0.33.0')
}
}
Expand Down
Loading