You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from 7.4.0 (with change 85c88b4) the kafka-schema-serializer adds a code dependency to jackson-dataformat-csv.
But the dependency is implicitly pulled from the kafka server dependency with provided scope,( org.apache.kafka:kafka_${kafka.scala.version}) which is usually not available in client applications.
I think the proper fix would be to remove the kafka server dependency and add missing dependency(ies) explicitly to the schema-serializer module.
The text was updated successfully, but these errors were encountered:
Starting from 7.4.0 (with change 85c88b4) the
kafka-schema-serializer
adds a code dependency to jackson-dataformat-csv.But the dependency is implicitly pulled from the kafka server dependency with provided scope,(
org.apache.kafka:kafka_${kafka.scala.version}
) which is usually not available in client applications.I think the proper fix would be to remove the kafka server dependency and add missing dependency(ies) explicitly to the schema-serializer module.
The text was updated successfully, but these errors were encountered: