-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (33 loc) · 1.04 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
Global / onChangedBuildSource := ReloadOnSourceChanges
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.5.2"
lazy val root = (project in file("."))
.settings(
name := "archon",
scalacOptions ++= Seq(
"-Yexplicit-nulls",
"-Xkind-projector",
"-Xfatal-warnings",
"-feature",
"-deprecation",
"-language:implicitConversions",
"-new-syntax",
"-indent",
),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
"com.lihaoyi" %% "pprint" % "0.9.0",
"com.lihaoyi" %% "fastparse" % "3.1.1",
"com.lihaoyi" %% "os-lib" % "0.11.3",
"org.scala-lang.modules" %% "scala-collection-contrib" % "0.4.0",
),
Compile / unmanagedJars += {
baseDirectory.value / "unmanaged" / "scalaz3_3-4.8.14-macos-aarch64.jar"
},
Test / envVars := Map(
"TEST_RESOURCES_ROOT" -> file("src/test/resources").getAbsolutePath,
),
Test / testOptions += Tests.Argument("-oF"),
Test / fork := true,
maxErrors := 1,
)