summaryrefslogtreecommitdiff
path: root/build.sbt
blob: 832ae098d06dce51cb21bd1d759ff6e891c7b003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sbt.Keys._

lazy val root = project.in(file(".")).dependsOn(uri("git://github.com/lihaoyi/SprayWebSockets.git"))

name := "workbench"

version := "0.1-SNAPSHOT"

organization := "com.lihaoyi.workbench"

sbtPlugin := true

(resources in Compile) := {(resources in Compile).value ++ (baseDirectory.value * "*.ts").get}

resolvers += "spray repo" at "http://repo.spray.io"

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

libraryDependencies ++= Seq(
  "io.spray" % "spray-can" % "1.2.0",
  "com.typesafe.akka"   %%  "akka-actor"    % "2.2.3",
  "com.typesafe.play" %% "play-json" % "2.2.0-RC1"
)