1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-01 22:22:53 +00:00

chore: remove explicit kafka dependency version

Spring Boot 3.6.1 uses Kafka 3.6.1 that mitigates
CVE-2023-34453, CVE-2023-34454, CVE-2023-34455, CVE-2023-43642
and new CVE-2023-44981 from version 3.6.0
This commit is contained in:
2023-12-29 17:06:47 +01:00
parent add09c3f9c
commit fe927e65aa

View File

@ -20,10 +20,6 @@ var versions = mapOf(
"mockito-kotlin" to "5.1.0" "mockito-kotlin" to "5.1.0"
) )
// Override Apache Kafka to be used
// Fixes: CVE-2023-34455, CVE-2023-34454, CVE-2023-34453 and CVE-2023-43642
extra["kafka.version"] = "3.6.0"
java { java {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_17
} }