-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.sbt
32 lines (22 loc) · 953 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
name := """Clustered chat"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
val akkaVersion = "2.4.2"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-distributed-data-experimental" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-contrib" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"org.webjars" %% "webjars-play" % "2.4.0",
"org.webjars" % "bootstrap" % "3.3.4",
"org.webjars" % "jquery" % "2.1.4",
"org.webjars" % "handlebars" % "4.0.2",
specs2 % Test
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
LessKeys.compress in Assets := true
pipelineStages := Seq(digest)
includeFilter in (Assets, LessKeys.less) := "*.less"
javaOptions in Test ++= Seq("-Dlogger.resource=logback-test.xml")