-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
40 lines (32 loc) · 991 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
33
34
35
36
37
38
39
40
name := """skkserv-scala"""
version := """1.0"""
run / fork := true
scalaVersion := """2.13.3"""
scalacOptions ++= Seq(
"-feature",
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-unused"
)
assembly / assemblyJarName := "skkserv-scala.jar"
run / javaOptions ++= Seq(
"-Xmx48M"
)
Compile / scalaSource := baseDirectory.value / "src"
Test / scalaSource := baseDirectory.value / "test"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % "0.13.0")
enablePlugins(BuildInfoPlugin)
buildInfoKeys := Seq[BuildInfoKey](name, version)
buildInfoPackage := """buildinfo"""
resolvers += "Artima Maven Repository" at "https://repo.artima.com/releases"
libraryDependencies += ("org.scalactic" %% "scalactic" % "3.2.2")
libraryDependencies += ("org.scalatest" %% "scalatest" % "3.2.2" % "test")
Test / logBuffered := false
Test / parallelExecution := false