Skip to content

Commit 50c5e22

Browse files
committed
Organized and bumped dependencies
1 parent 329ea32 commit 50c5e22

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

build.sbt

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
1313

1414
scalastyleConfig := baseDirectory.value / "project" / "scalastyle_config.xml"
1515

16-
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.0"
17-
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
16+
val akkaVersion = "2.5.14"
17+
val akkaHttpVersion = "10.1.5"
18+
1819
libraryDependencies ++= Seq(
19-
"com.typesafe.akka" %% "akka-http-core" % "10.1.5",
20-
"com.typesafe.akka" %% "akka-http-spray-json" % "10.1.5",
21-
"com.typesafe.akka" %% "akka-stream" % "2.5.12"
20+
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
21+
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
22+
"com.typesafe.akka" %% "akka-stream" % akkaVersion
2223
)
2324

25+
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.0"
26+
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
2427
libraryDependencies += "de.vandermeer" % "asciitable" % "0.3.2"
2528
libraryDependencies += "com.lihaoyi" %% "fansi" % "0.2.5"
2629
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value

0 commit comments

Comments
 (0)