forked from gvolpe/advanced-http4s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (36 loc) · 998 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
28
29
30
31
32
33
34
35
36
37
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.gvolpe",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT",
scalacOptions := Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-Ypartial-unification"
)
)),
name := "Advanced Http4s",
libraryDependencies ++= Seq(
Libraries.catsEffect,
Libraries.monix,
Libraries.fs2Core,
Libraries.http4sServer,
Libraries.http4sClient,
Libraries.http4sDsl,
Libraries.http4sCirce,
Libraries.http4sXml,
Libraries.circeCore,
Libraries.circeGeneric,
Libraries.typesafeConfig,
Libraries.logback,
Libraries.scalaTest,
Libraries.scalaCheck
),
addCompilerPlugin("org.spire-math" % "kind-projector" % "0.9.5" cross CrossVersion.binary)
)