-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
20 lines (16 loc) · 833 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "discord-akka"
version := "0.1.0"
scalaVersion := "2.11.7"
val libraryVersion = "1.2.0-M1" // or "1.3.0-SNAPSHOT"
libraryDependencies := Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.2",
"com.typesafe.akka" %% "akka-http-experimental" % "1.0-SNAPSHOT",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "1.0-SNAPSHOT",
"com.github.julien-truffaut" %% "monocle-core" % libraryVersion,
"com.github.julien-truffaut" %% "monocle-generic" % libraryVersion,
"com.github.julien-truffaut" %% "monocle-macro" % libraryVersion,
"com.github.julien-truffaut" %% "monocle-state" % libraryVersion,
"com.github.julien-truffaut" %% "monocle-law" % libraryVersion % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.2" % "test",
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
)