Reputation: 41
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
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