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.
21 lines
499 B
Scala
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"),
|
|
)
|