init(15): sbt project with mainargs

This commit is contained in:
efim
2023-07-08 17:06:32 +00:00
parent 084035fdcb
commit c27cb67c2a
7 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
ThisBuild / scalaVersion := "3.2.2"
fork := true
ThisBuild / version := "0.0.1"
ThisBuild / organization := "industries.sunshine"
lazy val multiStepForm = (project in file("."))
.settings(
name := "multi-step-form",
libraryDependencies ++= Seq(
"com.lihaoyi" %% "cask" % "0.9.1",
"com.lihaoyi" %% "mainargs" % "0.5.0",
"org.thymeleaf" % "thymeleaf" % "3.1.1.RELEASE"
)
)