-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
48 lines (40 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
val scala3Version = "3.2.0"
val projectVersion = "1.0.0"
lazy val commonSettings = Seq(
name := "lc3linker",
version := projectVersion,
scalaVersion := scala3Version
)
libraryDependencies ++=Seq(
"org.scalatest" %% "scalatest" % "3.2.12" % "test",
"org.typelevel" %% "cats-core" % "2.7.0"
)
Docker / packageName := "fjab76/lc3linker"
Docker / version := projectVersion
dockerBaseImage := "eclipse-temurin:17-jre"
dockerExposedVolumes := Seq("/data")
lazy val root = project
.in(file("."))
.enablePlugins(
JavaAppPackaging,
DockerPlugin
)
.settings(commonSettings: _*)
scalacOptions ++= Seq(
"-deprecation", // emit warning and location for usages of deprecated APIs
"-explain", // explain errors in more detail
"-explain-types", // explain type errors in more detail
"-feature", // emit warning and location for usages of features that should be imported explicitly
"-indent", // allow significant indentation.
"-new-syntax", // require `then` and `do` in control expressions.
"-print-lines", // show source code line numbers.
"-unchecked", // enable additional warnings where generated code depends on assumptions
"-Ykind-projector", // allow `*` as wildcard to be compatible with kind projector
"-Xfatal-warnings", // fail the compilation if there are any warnings
"-Xmigration", // warn about constructs whose behavior may have changed since version
"-source:3.2"
)
//addCommandAlias("full", ";clean ;compile; coverage; test; coverageReport; scalastyle; stage")
coverageFailOnMinimum := true
coverageMinimumStmtTotal := 90
coverageMinimumBranchTotal := 90