Build uberjar using sbt-assembly

This commit is contained in:
Joscha 2024-09-04 19:28:01 +02:00
parent b1bf201a92
commit 448138b826
2 changed files with 4 additions and 3 deletions

View file

@ -1,10 +1,10 @@
val scala3Version = "3.5.0"
lazy val root = project
.in(file("."))
.settings(
organization := "de.plugh",
name := "asciiprooftree",
version := "0.0.0",
scalaVersion := scala3Version,
scalaVersion := "3.5.0",
libraryDependencies += "org.rogach" %% "scallop" % "5.1.0",
assembly / assemblyJarName := s"${name.value}.jar",
)