From 3e41859789c644a59334da6a07157aa0f1e0138f Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Mon, 10 Dec 2012 16:35:33 +0100 Subject: wip --- build.sbt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 build.sbt (limited to 'build.sbt') diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..8ad7f15 --- /dev/null +++ b/build.sbt @@ -0,0 +1,31 @@ +import com.typesafe.startscript.StartScriptPlugin + +seq(StartScriptPlugin.startScriptForClassesSettings: _*) + +seq(coffeeSettings: _*) + +(CoffeeKeys.bare in (Compile, CoffeeKeys.coffee)) := true + +(resourceManaged in (Compile, CoffeeKeys.coffee)) <<= (crossTarget in Compile)(_ / "classes" / "static" / "scripts" / "coffee") + +name:="developerstream" + +organization := "io.trygvis.developerstream" + +scalaVersion := "2.9.1-1" + +libraryDependencies ++= + Seq( + "net.databinder" %% "unfiltered" % "0.6.4", + "net.databinder" %% "unfiltered-filter" % "0.6.4", + "net.databinder" %% "unfiltered-jetty" % "0.6.4", +// "org.constretto" %% "constretto-scala" % "1.0", +// "com.typesafe" %% "slick" % "0.11.0", +// "org.scalaquery" % "scalaquery_2.9.0-1" % "0.9.5" :: + "org.scalaquery" %% "scalaquery" % "0.10.0-M1", + "joda-time" % "joda-time" % "2.1", + "org.joda" % "joda-convert" % "1.2", + "org.slf4j" % "slf4j-api" % "1.7.2", + "ch.qos.logback" % "logback-classic" % "1.0.7", + "postgresql" % "postgresql" % "9.1-901-1.jdbc4" + ) -- cgit v1.2.3