forked from twitter/scala_school2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (27 loc) · 1.39 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name := "scaffold"
organization := "com.twitter"
version := "1.0-SNAPSHOT"
scalaVersion := "2.10.2"
resolvers += "spray repo" at "http://repo.spray.io"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.2.0-RC1" % "compile",
"io.spray" % "spray-caching" % "1.2-M8" % "compile",
"io.spray" % "spray-can" % "1.2-M8" % "compile",
"io.spray" % "spray-httpx" % "1.2-M8" % "compile",
"io.spray" %% "spray-json" % "1.2.5" % "compile",
"io.spray" % "spray-routing" % "1.2-M8" % "compile",
"org.pegdown" % "pegdown" % "1.4.0" % "compile",
"org.scala-lang" % "scala-compiler" % "2.10.2" % "compile",
"org.webjars" % "bootstrap" % "2.3.2" % "runtime",
"org.webjars" % "codemirror" % "3.14" % "runtime",
"org.webjars" % "html5shiv" % "3.6.2" % "runtime",
"org.webjars" % "jquery" % "2.0.2" % "runtime",
"com.typesafe.akka" %% "akka-testkit" % "2.2.0-RC1" % "test",
"io.spray" % "spray-testkit" % "1.2-M8" % "test",
"org.scalatest" %% "scalatest" % "1.9.1" % "test"
)
fork := true
seq(Revolver.settings: _*)
seq(Twirl.settings: _*)
seq(com.typesafe.sbt.SbtStartScript.startScriptForClassesSettings: _*)
Twirl.twirlImports := Seq("com.twitter.scaffold.Document", "Document._")