Re: Adding Kafka dependencies in Play Framework

2013-11-25 Thread Something Something
Please ignore. Thanks to the tip at this link I was able to get it to work by adding: resolvers += "Apache repo" at " https://repository.apache.org/content/repositories/releases"; http://mail-archives.apache.org/mod_mbox/kafka-users/201308.mbox/%3cdf4527f2-5634-4dc8-b7fc-ab8428640...@l1024.org%3

Re: Adding Kafka dependencies in Play Framework

2013-11-25 Thread Something Something
Getting this error message when I run the 'compile' command: [error] (*:update) sbt.ResolveException: unresolved dependency: org.apache.kafka#kafka_2.9.2;0.8.0-beta1: null name not allowed Added the following to my build.sbt name := "OptionsWatcher" version := "1.0-SNAPSHOT" libraryDependen

Re: Adding Kafka dependencies in Play Framework

2013-11-25 Thread chetan conikee
Add the following to a Play Project with Scala 2.9.2 scalaVersion := "2.9.2" libraryDependencies ++= Seq( "joda-time" % "joda-time" % "2.2", "org.joda" % "joda-convert" % "1.3.1", "ch.qos.logback" % "logback-classic" % "1.0.13", "org.mashupbots.socko" % "socko-webserver_2.9.2" % "0.2

Adding Kafka dependencies in Play Framework

2013-11-24 Thread Something Something
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