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

1
project/plugins.sbt Normal file
View file

@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")