-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
23 lines (22 loc) · 866 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
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.12.6",
version := "0.1.0-SNAPSHOT"
)),
name := "pixelwars-ruud",
libraryDependencies += scalaTest % Test,
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5.13",
"com.typesafe.akka" %% "akka-slf4j" % "2.5.13",
"com.typesafe.akka" %% "akka-testkit" % "2.5.13" % Test,
"com.typesafe.akka" %% "akka-stream" % "2.5.13",
"com.typesafe.akka" %% "akka-stream-testkit" % "2.5.13" % Test,
"com.typesafe.akka" %% "akka-http" % "10.1.3",
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.3" % Test,
"com.typesafe.akka" %% "akka-http-spray-json" % "10.1.3",
"ch.qos.logback" % "logback-classic" % "1.2.3",
)
)