-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
27 lines (23 loc) · 706 Bytes
/
build.sbt
File metadata and controls
27 lines (23 loc) · 706 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
27
lazy val root = project
.in(file("."))
.settings(
name := "mpst-embedded",
version := "0.1.0-SNAPSHOT",
scalaVersion := "3.3.1",
libraryDependencies ++= Seq(
"dev.zio" %% "izumi-reflect" % "2.3.6",
"org.scalameta" %% "munit" % "0.7.29" % Test
)
)
unmanagedSources / excludeFilter := new FileFilter {
def accept(f: File) =
f.getParent().endsWith("examples") ||
f.getParent().endsWith("ecoop17") ||
f.getParent().endsWith("mscs16") ||
f.getParent().endsWith("popl19") ||
f.getParent().endsWith("scribble") ||
false
}
artifactName := {
(sv: ScalaVersion, module: ModuleID, artifact: Artifact) => artifact.name + "." + artifact.extension
}