1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

chore: Add kafka-clients dependency with fixed version to mitigate CVEs

This will use version 3.5.1 of kafka-clients dependency to prevent issues due to
CVE-2023-34453, CVE-2023-34454 and CVE-2023-34455
This commit is contained in:
Paul-Christian Volkmer 2023-08-30 13:26:05 +02:00
parent 5e93e834ad
commit c52509054d

View File

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