-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
37 lines (33 loc) · 1.06 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
inThisBuild(List(
organization := "ch.epfl.lamp",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT"
))
lazy val `dotty-bot` = project
.in(file("."))
.settings(
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-Xfatal-warnings"
),
libraryDependencies ++= {
val circeVersion = "0.8.0"
val http4sVersion = "0.16.6"
Seq(
"com.novocode" % "junit-interface" % "0.11" % Test,
"ch.qos.logback" % "logback-classic" % "1.1.7",
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion
)
},
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v"),
// specify main and ignore tests when assembling
mainClass in assembly := Some("dotty.bot.Main"),
test in assembly := {}
)