-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
31 lines (25 loc) · 940 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
name := "Lifeway Homework"
version := "1.0"
scalaVersion := "2.13.8"
val AkkaVersion = "2.6.9"
val AkkaHttpVersion = "10.2.0"
val ScalaTestVersion = "3.2.16"
scalacOptions ++= Seq(
"-Ywarn-unused:imports"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-testkit" % AkkaVersion % Test,
"com.typesafe.akka" %% "akka-http-testkit" % AkkaHttpVersion % Test,
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test,
"ch.megard" %% "akka-http-cors" % "1.2.0"
)
dependencyOverrides ++= Seq(
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion
)
assembly / assemblyJarName := "star-wars-proxy-api.jar"
run / fork := true