-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (22 loc) · 866 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
import snapshot4s.BuildInfo.snapshot4sVersion
val scala3Version = "3.5.1"
Global / onChangedBuildSource := ReloadOnSourceChanges
lazy val root = project
.in(file("."))
.enablePlugins(Snapshot4sPlugin)
.settings(
name := "fred",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
scalacOptions ++= Seq("-Wunused:all", "-deprecation"),
assembly / assemblyOutputPath := file("./fred.jar"),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-parse" % "0.3.9",
"com.github.scopt" %% "scopt" % "4.1.0",
"org.scalactic" %% "scalactic" % "3.2.19",
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
"com.siriusxm" %% "snapshot4s-scalatest" % snapshot4sVersion % Test,
"com.lihaoyi" %% "pprint" % "0.9.0" % Test,
)
)