Skip to content

Commit

Permalink
add kafka for scala 2.9.2, project structure and git ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandezpablo85 committed Dec 26, 2012
1 parent 7305f5b commit 8c4537a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
target/
logs/
Binary file added lib/kafka-0.8.0.jar
Binary file not shown.
13 changes: 13 additions & 0 deletions project/Build.scala
@@ -0,0 +1,13 @@
import sbt._
import Keys._
import PlayProject._

object ApplicationBuild extends Build {

val appName = "mq-web"
val appVersion = "0.1"
val appDependencies = Seq()

lazy val main = PlayProject(appName, appVersion, appDependencies)

}
1 change: 1 addition & 0 deletions project/build.properties
@@ -0,0 +1 @@
sbt.version=0.12.1
8 changes: 8 additions & 0 deletions project/plugins.sbt
@@ -0,0 +1,8 @@
// Comment to get more information during initialization
logLevel := Level.Warn

// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.1-SNAPSHOT")

0 comments on commit 8c4537a

Please sign in to comment.