-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (20 loc) · 826 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
name := "akka-http-free-ser"
version := "1.0"
scalaVersion := "2.12.2"
lazy val akkaHttpVersion = "10.0.7"
lazy val akkaHttpJsonVersion = "1.16.1"
lazy val circeVersion = "0.8.0"
lazy val freestyleVersion = "0.3.0"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test,
"de.heikoseeberger" %% "akka-http-circe" % akkaHttpJsonVersion,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
compilerPlugin("org.scalameta" % "paradise" % "3.0.0-M9" cross CrossVersion.patch),
"org.specs2" %% "specs2-core" % "3.9.1" % Test
)
// freestyle
libraryDependencies += "io.frees" %% "freestyle" % freestyleVersion
// liberator
libraryDependencies += "io.aecor" %% "liberator" % "0.4.3"