init(13): new sbt project, main args

This commit is contained in:
efim
2023-06-28 15:24:03 +00:00
parent 2f1804a9fd
commit 28f2cf281a
6 changed files with 45 additions and 0 deletions

View File

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