-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
34 lines (26 loc) · 796 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
import sbt.Keys._
name := "http4sbin"
version := "0.0.1"
scalaVersion := "2.12.3"
scalacOptions := Seq(
"-unchecked",
"-feature",
"-deprecation",
"-encoding",
"utf8",
"-language:postfixOps",
"-language:higherKinds",
"-Xfatal-warnings"
)
lazy val http4sVersion = "0.18.0-M1"
mainClass := Some("com.dbousamra.http4sbin.Boot")
libraryDependencies ++= Seq(
"org.log4s" %% "log4s" % "1.3.6",
"org.slf4j" % "slf4j-log4j12" % "1.7.25",
"com.lihaoyi" %% "scalatags" % "0.6.3",
"io.circe" %% "circe-core" % "0.9.0-M1",
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion
)
enablePlugins(JavaAppPackaging)