-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
20 lines (13 loc) · 916 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "sttp-client-exmp"
version := "0.1"
scalaVersion := "2.12.5"
libraryDependencies += "com.softwaremill.sttp" %% "core" % "1.1.12"
libraryDependencies += "com.softwaremill.sttp" %% "async-http-client-backend" % "1.1.12"
libraryDependencies += "com.softwaremill.sttp" %% "async-http-client-backend-future" % "1.1.12"
libraryDependencies += "com.softwaremill.sttp" %% "async-http-client-backend-scalaz" % "1.1.12"
libraryDependencies += "io.argonaut" %% "argonaut-scalaz" % "6.2"
libraryDependencies += "com.softwaremill.sttp" %% "akka-http-handler" % "0.0.13"
libraryDependencies += "com.softwaremill.sttp" %% "async-http-client-handler-scalaz" % "0.0.13"
libraryDependencies += "com.softwaremill.sttp" %% "async-http-client-handler-cats" % "0.0.13"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.0-SNAP10" % Test
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.4" % "test"