forked from PassTGen/PassTGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (23 loc) · 770 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
lazy val root = (project in file(".")).settings(
inThisBuild(
List(
organization := "xyz.javiertejedor",
scalaVersion := "2.13.5"
)
),
name := "passtgen"
)
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.2" % Test
val AkkaVersion = "2.6.8"
val AkkaHttpVersion = "10.2.4"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor-typed" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion
)
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "1.7.30",
"org.slf4j" % "slf4j-simple" % "1.7.30"
)
libraryDependencies ++= Seq("org.reactivemongo" %% "reactivemongo" % "1.0.3")