-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
18 lines (16 loc) · 971 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name := "weatherapp-scala"
version := "0.0.1"
scalacOptions := Seq("-unchecked", "-feature", "-deprecation", "-encoding", "utf8", "-Xfatal-warnings", "-language:postfixOps")
scalaVersion := "2.11.8"
mainClass := Some("sbousamra.weatherapp.WeatherApp")
enablePlugins(JavaAppPackaging)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.12.1" % "test",
"org.http4s" %% "http4s-dsl" % "0.15.0",
"org.http4s" %% "http4s-blaze-server" % "0.15.0",
"org.http4s" %% "http4s-blaze-client" % "0.15.0",
"org.http4s" %% "http4s-argonaut" % "0.15.0",
"org.http4s" %% "http4s-json4s-native" % "0.15.0",
"io.argonaut" %% "argonaut" % "6.1"
)