We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f4d3a3 commit 85a7a2fCopy full SHA for 85a7a2f
1 file changed
build.gradle
@@ -203,6 +203,9 @@ subprojects {
203
project.name.startsWith('iceberg-kafka-connect')) {
204
exclude group: 'org.lz4', module: 'lz4-java'
205
resolutionStrategy.capabilitiesResolution.withCapability("org.lz4:lz4-java") {
206
+ // The ":0" is a Gradle variant selector that matches any version of at.yawk.lz4:lz4-java
207
+ // Gradle will automatically resolve to the actual version (1.10.2) defined in libs.versions.toml
208
+ // This allows the capability resolution to work without hardcoding the version number here
209
select("at.yawk.lz4:lz4-java:0")
210
because("Enforce lz4-java that contains CVE-2025-12183 and CVE-2025-66566 fixes")
211
}
0 commit comments