Skip to content

Commit 2f837a5

Browse files
committed
add missing minimalBuildSBT.txt
1 parent afe690e commit 2f837a5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

minimalBuildSBT.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
val scalatest = "org.scalatest" %% "scalatest" % "3.2.15" % "test"
2+
val scalaplus = "org.scalatestplus" %% "scalacheck-1-15" % "3.2.11.0" % "test"
3+
4+
lazy val root = (project in file("."))
5+
.settings(
6+
name := "myProject",
7+
version := "1.0.0",
8+
scalaVersion := "3.3.5",
9+
sbtVersion := "1.11.2",
10+
scalacOptions := Seq("-unchecked", "-deprecation", "-feature"),
11+
resolvers += Resolver.sonatypeCentralSnapshots,
12+
libraryDependencies ++= Seq(
13+
scalatest,
14+
scalaplus
15+
)
16+
)
17+
18+
// Fork a new JVM on every sbt run task
19+
// Fixes an issue with the classloader complaining that the Monosat library is
20+
// "already loaded in another classloader" on successive runs of the analysis
21+
// in the same sbt instance.
22+
fork := true

0 commit comments

Comments
 (0)