-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (17 loc) · 846 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
name := """play-meetings"""
version := "1.4"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.6"
scalacOptions ++= Seq("-unchecked", "-feature")
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
val akkaVersion = "2.3.12"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion
)
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.4" % "test"
libraryDependencies += "commons-io" % "commons-io" % "2.4" % "test"
libraryDependencies += specs2 % Test