-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.sbt
39 lines (32 loc) · 1.54 KB
/
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
38
39
import Versions._
name := "temperature-machine"
version := "2.2.1"
organization := "bad.robot"
scalaVersion := "2.12.7"
mainClass in Compile := Some("bad.robot.temperature.Main")
libraryDependencies ++= Seq(
// "org.scala-lang.modules" %% "scala-xml" % "1.2.0",
"org.rrd4j" % "rrd4j" % "2.2.1",
"org.scalaz" %% "scalaz-core" % "7.2.17",
"org.http4s" %% "http4s-dsl" % http4s,
"org.http4s" %% "http4s-circe" % http4s,
"org.http4s" %% "http4s-blaze-server" % http4s,
"org.http4s" %% "http4s-blaze-client" % http4s,
"io.circe" %% "circe-core" % circe,
"io.circe" %% "circe-generic" % circe,
"io.circe" %% "circe-parser" % circe,
"io.circe" %% "circe-literal" % circe,
"org.apache.logging.log4j" % "log4j-api" % log4j,
"org.apache.logging.log4j" % "log4j-core" % log4j,
"org.apache.logging.log4j" % "log4j-slf4j-impl" % log4j,
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.0",
"io.verizon.knobs" %% "core" % "6.0.33",
"org.specs2" %% "specs2-core" % "3.9.5" % "test"
)
scalacOptions := Seq(
"-Xlint",
"-Xfatal-warnings",
"-deprecation",
"-feature",
"-language:implicitConversions,reflectiveCalls,higherKinds",
"-Ypartial-unification")