Files
99-problems-scala/build.sbt
T
2026-03-19 15:36:32 +01:00

17 lines
515 B
Scala

import Dependencies._
ThisBuild / scalaVersion := "3.8.2"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "ninetyNineScalaProblems",
libraryDependencies += munit % Test
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.
libraryDependencies += "org.scalameta" %% "munit" % "1.0.4" % Test