-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
49 lines (37 loc) · 2.03 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
42
43
44
45
46
47
48
49
import play.core.PlayVersion.{current ⇒ playVersion}
name := "chat"
organization := "lv"
version := "1.0"
scalaVersion := "2.12.3"
scalacOptions ++= Seq("-feature", "-deprecation")
scalacOptions in(Compile, doc) := Nil
val AkkaVersion = "2.5.3"
val MacwireVersion = "2.3.0"
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2",
"org.iq80.leveldb" % "leveldb" % "0.7",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8",
"com.github.dnvriend" %% "akka-persistence-inmemory" % "2.5.1.1",
// Production dependencies
"com.typesafe.play" %% "play" % playVersion withSources() withJavadoc(),
"com.typesafe.akka" %% "akka-persistence" % AkkaVersion withSources() withJavadoc(),
"com.typesafe.akka" %% "akka-persistence-query" % AkkaVersion withSources() withJavadoc(),
"com.typesafe.akka" %% "akka-remote" % AkkaVersion withSources() withJavadoc(),
"com.softwaremill.macwire" %% "macros" % MacwireVersion % Provided withSources() withJavadoc(),
"com.typesafe.akka" %% "akka-cluster" % AkkaVersion withSources() withJavadoc(),
"com.typesafe.akka" %% "akka-cluster-tools" % AkkaVersion withSources() withJavadoc(),
"com.lightbend.play" %% "play-socket-io" % "1.0.0-beta-2" withSources() withJavadoc(),
// Test dependencies for running a Play server
"com.typesafe.play" %% "play-akka-http-server" % playVersion % Test withSources() withJavadoc(),
"com.typesafe.play" %% "play-logback" % playVersion % Test withSources() withJavadoc(),
// Test dependencies for Scala/Java dependency injection
"com.typesafe.play" %% "play-guice" % playVersion % Test withSources() withJavadoc(),
"com.softwaremill.macwire" %% "macros" % MacwireVersion % Test withSources() withJavadoc(),
// Test framework dependencies
"org.scalatest" %% "scalatest" % "3.0.1" % Test withSources() withJavadoc(),
"com.novocode" % "junit-interface" % "0.11" % Test withSources() withJavadoc()
)
fork in Test := true
enablePlugins(PlayScala)
resolvers += Resolver.jcenterRepo