mirror of
https://github.com/mx42/aoc2024.scala.git
synced 2026-01-14 05:49:51 +01:00
12 lines
267 B
Scala
12 lines
267 B
Scala
val scala3Version = "3.6.4"
|
|
|
|
lazy val root = project
|
|
.in(file("."))
|
|
.settings(
|
|
name := "AOC2024",
|
|
version := "0.1.0-SNAPSHOT",
|
|
scalaVersion := scala3Version,
|
|
fork := true,
|
|
libraryDependencies += "org.scalameta" %% "munit" % "1.0.0" % Test
|
|
)
|