-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (21 loc) · 910 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 := "httpdsl"
version := "0.1"
scalaVersion := "2.12.4"
scalacOptions ++= Seq("-Ypartial-unification", "-Yrangepos", "-language:implicitConversions", "-language:higherKinds", "-deprecation")
val http4sVersion = "0.18.0-M4"
libraryDependencies ++= Seq(
"com.lihaoyi" %% "fastparse" % "1.0.0",
"org.typelevel" %% "cats-core" % "1.0.0",
"org.typelevel" %% "cats-free" % "1.0.0",
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"io.circe" %% "circe-generic" % "0.9.0-M1",
"org.slf4j" % "slf4j-api" % "1.7.21",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.specs2" %% "specs2-core" % "4.0.1" % "test",
"org.specs2" %% "specs2-scalacheck" % "4.0.1" % "test",
"io.frees" %% "iota-core" % "0.3.4"
)
crossPaths := false