-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
32 lines (26 loc) · 936 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
import sbt.Keys.{libraryDependencies, resolvers}
name := "tmt-test-reporter"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.10"
libraryDependencies += "net.aichler" % "jupiter-interface" % "0.9.1" % Provided
libraryDependencies += "com.lihaoyi" %% "scalatags" % "0.11.1"
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.2"
val enableFatalWarnings: SettingKey[Boolean] = settingKey[Boolean]("enable fatal warnings")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
inThisBuild(
Seq(
organization := "com.github.tmtsoftware.rtm",
scalaVersion := "2.13.8",
version := "0.3.0",
resolvers += "jitpack" at "https://jitpack.io",
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-feature",
"-unchecked",
"-deprecation",
"-Xlint:_,-missing-interpolator",
"-Ywarn-dead-code"
)
)
)
Settings.addAliases()