Let me start off by saying I am a newbie to Kafka, Play as well as Scala.
Trying to write an application under Play Framework in which an 'Actor'
will write a message to Kafka queue.
There's sample code available
under ./core/src/main/scala/kafka/producer/ConsoleProducer.scala for me to
copy, so that's not the issue.
I am struggling to add the Kafka jar to my project in Play.
I tried to put the following under ./projects/plugins.sbt
addSbtPlugin("org.apache" % "kafka" % "0.7.2-incubating")
(and several combinations of this) but nothing is working. Please help.
Thanks.