-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
20 lines (17 loc) · 710 Bytes
/
build.sbt
File metadata and controls
20 lines (17 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
organization := "com.example"
name := "apipractice"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.12.2"
val Http4sVersion = "0.15.11a"
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"ch.qos.logback" % "logback-classic" % "1.2.1",
// Optional for auto-derivation of JSON codecs
"io.circe" %% "circe-generic" % "0.6.1",
"io.circe" %% "circe-literal" % "0.6.1",
"org.scalactic" %% "scalactic" % "3.0.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oF")