From 708509e2619120e2a5c3030116801b2255597dbc Mon Sep 17 00:00:00 2001 From: Erik van Oosten Date: Fri, 16 Aug 2024 13:37:48 +0200 Subject: [PATCH] Use open source kafka client ... by excluding Confluent's version of the kafka client. --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6c44b6189..a1f5e2fa4 100644 --- a/build.sbt +++ b/build.sbt @@ -68,7 +68,8 @@ lazy val vulcan = project dependencySettings ++ Seq( libraryDependencies ++= Seq( "com.github.fd4s" %% "vulcan" % vulcanVersion, - "io.confluent" % "kafka-avro-serializer" % confluentVersion + "io.confluent" % "kafka-avro-serializer" % confluentVersion exclude("org.apache.kafka", "kafka-clients"), + "org.apache.kafka" % "kafka-clients" % kafkaVersion ) ), publishSettings,