mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
16 lines
512 B
Scala
16 lines
512 B
Scala
val scala3Version = "3.7.3"
|
|
|
|
lazy val root = project
|
|
.in(file("."))
|
|
.settings(
|
|
name := "GildedRose",
|
|
version := "1.0",
|
|
scalaVersion := scala3Version,
|
|
libraryDependencies ++= Seq(
|
|
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
|
|
"com.approvaltests" % "approvaltests" % "25.4.3" % Test,
|
|
"com.github.sbt.junit" % "jupiter-interface" % "0.15.1" % Test
|
|
),
|
|
testOptions += Tests.Argument(TestFrameworks.JUnit)
|
|
)
|