Files
summer-phrasebook/build.sbt
Jakub Zych 6e923eea45 Switch HOCON dependency from typesafe-config to Jig
Jig (ma.chinespirit::jig) is the SummerCMS standard for HOCON.
Uses sconfig under the hood (no Java deps, Scala Native
compatible). Adapts HoconLoader to sconfig's parameterless method style.
2026-02-23 00:39:19 +01:00

21 lines
499 B
Scala

lazy val root = (project in file("."))
.settings(
name := "summer-phrasebook",
organization := "com.golem15.summer",
version := "0.1.0-SNAPSHOT",
scalaVersion := "3.3.4",
libraryDependencies ++= Seq(
"ma.chinespirit" %% "jig" % "0.1.0",
"org.scalameta" %% "munit" % "1.0.3" % Test,
),
scalacOptions ++= Seq(
"-Wunused:all",
"-deprecation",
"-feature",
),
testFrameworks += new TestFramework("munit.Framework"),
)