Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 6 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,30 +1,22 @@
val scala3Version = "3.8.2"

lazy val root = project
.in(file("."))
.settings(
organization := "com.boombustgroup",
name := "amor-fati",
version := "0.2.0",
scalaVersion := scala3Version,
organization := "com.boombustgroup",
name := "amor-fati",
scalaVersion := "3.8.2",
scalacOptions ++= Seq(
"-Werror",
"-deprecation",
"-feature",
"-unchecked",
"-explain",
"-Wunused:all",
"-Wconf:msg=Alphanumeric method.*is not declared infix:s",
),
Compile / mainClass := Some("com.boombustgroup.amorfati.simulate"),
assembly / mainClass := Some("com.boombustgroup.amorfati.simulate"),
mainClass := Some("com.boombustgroup.amorfati.simulate"),
assembly / assemblyJarName := "amor-fati.jar",
// Disable parallel test execution: production code uses global scala.util.Random,
// so concurrent suites would cause non-deterministic interleaving (breaks reproducibility test)
Test / parallelExecution := false,
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.1" % Test,
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test
)
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
),
)
Loading