-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
32 lines (24 loc) · 976 Bytes
/
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
import AssemblyKeys._
name := "skype-bot"
organization := "com.github.maqdev"
version := "0.1.1"
scalaVersion := "2.11.3"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= {
val akkaV = "2.3.6"
val sprayV = "1.3.2"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-client" % sprayV,
"com.typesafe.play" %% "play-json" % "2.3.4",
"io.spray" %% "spray-testkit" % sprayV % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"org.xerial" % "sqlite-jdbc" % "3.8.7",
"com.google.guava" % "guava" % "16.0.1"
)
}
Revolver.settings ++ assemblySettings