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:
parent
44340882ab
commit
ef63cd474f
|
@ -7,6 +7,9 @@ ThisBuild / organization := "industries.sunshine"
|
||||||
lazy val root = (project in file("."))
|
lazy val root = (project in file("."))
|
||||||
.settings(
|
.settings(
|
||||||
name := "priceGrid",
|
name := "priceGrid",
|
||||||
|
|
||||||
|
assembly / mainClass := Some("pricegrid.App"),
|
||||||
|
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"com.lihaoyi" %% "cask" % "0.9.1",
|
"com.lihaoyi" %% "cask" % "0.9.1",
|
||||||
"com.lihaoyi" %% "scalatags" % "0.12.0",
|
"com.lihaoyi" %% "scalatags" % "0.12.0",
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
|
Loading…
Reference in New Issue