forked from input-output-hk/ce-semantics-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (21 loc) · 642 Bytes
/
build.sbt
File metadata and controls
26 lines (21 loc) · 642 Bytes
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
val scala3Version = "3.1.3"
lazy val root = project
.in(file("."))
.settings(
name := "ce-semantics-dsl3",
version := "0.9",
scalaVersion := scala3Version,
scalacOptions := Seq(
"--encoding", "utf8",
"--unchecked",
"--deprecation",
"--explain",
"--explain-types",
"-new-syntax",
),
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-text" % "1.9",
"com.lihaoyi" %% "sourcecode" % "0.2.8", // https://github.com/com-lihaoyi/sourcecode
"org.scalatestplus" %% "scalacheck-1-16" % "3.2.12.0", // https://www.scalatest.org/plus/scalacheck
)
)