forked from hzengin/telegrambot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
41 lines (33 loc) · 1.04 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
38
39
40
41
name := """telegrambot"""
organization := "io.zengin"
version := "0.1-SNAPSHOT"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
scalaVersion := "2.11.7"
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io/")
libraryDependencies ++={
val sprayVersion = "1.3.3"
val sprayJsonVersion = "1.3.2"
val akkaVersion = "2.4.0"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"io.spray" %% "spray-can" % sprayVersion,
"io.spray" %% "spray-routing" % sprayVersion,
"io.spray" %% "spray-json" % sprayJsonVersion,
"io.spray" %% "spray-client" % sprayJsonVersion,
"org.json4s" %% "json4s-native" % "3.3.0",
"com.github.nscala-time" %% "nscala-time" % "2.4.0",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
)
}
scalacOptions := Seq(
"-unchecked",
"-deprecation",
"-encoding", "utf8",
"-feature",
"-language:higherKinds",
"-language:postfixOps",
"-language:implicitConversions",
"-language:existentials")
fork in run := true