Skip to content
Closed
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
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,17 @@ subprojects {
apply plugin: "com.github.spotbugs"
apply plugin: 'jacoco'

configurations.all {
resolutionStrategy {
capabilitiesResolution {
withCapability('org.lz4:lz4-java') {
select('org.lz4:lz4-java:0')
because 'CVE-2025-12183: Prefer org.lz4 over at.yawk.lz4'
}
}
}
}

// This project requires Java 17
sourceCompatibility = JavaVersion.VERSION_17

Expand Down Expand Up @@ -323,6 +334,9 @@ project(':cruise-control') {
implementation("commons-beanutils:commons-beanutils:1.11.0") {
because("version 1.9.4 pulled from kafa 3.9.1 has CVE-2025-48734 in it, which is fixed in 1.11.0")
}
implementation("org.lz4:lz4-java:${lz4JavaVersion}") {
because("CVE-2025-12183: Security vulnerability in 1.8.0")
}
}

testImplementation project(path: ':cruise-control-metrics-reporter', configuration: 'testOutput')
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ nettyVersion=4.1.118.Final
jettyVersion=9.4.56.v20240826
vertxVersion=4.5.8
testcontainersVersion=1.21.3
lz4JavaVersion=1.8.1