-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (22 loc) · 926 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
name := "json-custom-serializer"
organization := "LansaloLtd"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.12.3"
resolvers ++= Seq("Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
Resolver.bintrayRepo("hseeberger", "maven"))
libraryDependencies ++= {
val AkkaVersion = "2.5.12"
val AkkaHttpVersion = "10.1.1"
val Json4sVersion = "3.5.3"
Seq(
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"org.json4s" %% "json4s-native" % Json4sVersion,
"org.json4s" %% "json4s-core" % Json4sVersion,
"org.json4s" %% "json4s-jackson" % Json4sVersion,
"org.json4s" %% "json4s-ext" % Json4sVersion,
"de.heikoseeberger" %% "akka-http-json4s" % "1.20.1",
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)
}