init(12): new sbt project: static price component

This commit is contained in:
efim
2023-06-28 06:11:07 +00:00
parent e23afdab6f
commit d0f8cd771e
7 changed files with 57 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
ThisBuild / scalaVersion := "3.2.2"
fork := true
ThisBuild / version := "0.0.1"
ThisBuild / organization := "industries.sunshine"
val toolkitV = "0.1.7"
val toolkit = "org.scala-lang" %% "toolkit" % toolkitV
val toolkitTest = "org.scala-lang" %% "toolkit-test" % toolkitV
lazy val root = (project in file("."))
.settings(
name := "order-summary-component",
libraryDependencies += toolkit,
libraryDependencies += (toolkitTest % Test),
libraryDependencies ++= Seq(
"com.lihaoyi" %% "cask" % "0.9.1",
"com.lihaoyi" %% "mainargs" % "0.5.0"
)
)