b1nnar
b1nnar

Reputation: 41

Is the distribution package (.tgz) of Apache Kafka available as a Maven dependency?

I would like to add Apache Kafka .tgz archive contents to my Maven project's distribution package. I was not able to find the archive on Maven Central. Any reason why it is not there?

Upvotes: 0

Views: 180

Answers (1)

OneCricketeer
OneCricketeer

Reputation: 191874

Maven Central generally has jars and POMs, not tarballs.

The kafka module, (not kafka-clients) includes everything needed to programmatically run a KafkaServer class, though you'd want KafkaServerStartable to initialize that

Upvotes: 1

Related Questions