-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (28 loc) · 817 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
ThisBuild / resolvers += Resolver.JCenterRepository
ThisBuild / turbo := true
lazy val root = (project in file("."))
.settings(
name := "leetcode",
version := "0.342.2246",
scalaVersion := "3.1.2",
scalacOptions ++= Seq(
"-encoding", "utf8", // Option and arguments on same line
"-deprecation",
"-feature",
"-unchecked",
"-Xfatal-warnings",
//"-Xlint",
//"-Ywarn-dead-code",
//"-Ywarn-extra-implicit",
//"-Ywarn-numeric-widen",
),
javacOptions ++= Seq(
"-encoding", "utf8", // Option and arguments on same line
"-Xlint",
"-Werror"
),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-wordspec" % "3.2.11" % Test,
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.11" % Test,
),
)