feat: adding assebly

run with
 java -jar ./target/scala-3.3.0/priceGrid-assembly-0.0.1.jar
build with
assebly command in sbt
This commit is contained in:
efim 2023-06-26 18:50:36 +00:00
parent 44340882ab
commit ef63cd474f
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,9 @@ ThisBuild / organization := "industries.sunshine"
lazy val root = (project in file("."))
.settings(
name := "priceGrid",
assembly / mainClass := Some("pricegrid.App"),
libraryDependencies ++= Seq(
"com.lihaoyi" %% "cask" % "0.9.1",
"com.lihaoyi" %% "scalatags" % "0.12.0",

View File

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