init(14): scala project def with main args

This commit is contained in:
efim
2023-06-30 13:47:20 +00:00
parent b6ba1dfcd0
commit 770b4f6e87
7 changed files with 63 additions and 0 deletions

View File

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