Initial commit
This commit is contained in:
20
build.sbt
Normal file
20
build.sbt
Normal file
@@ -0,0 +1,20 @@
|
||||
lazy val root = (project in file("."))
|
||||
.settings(
|
||||
name := "summercms-compass",
|
||||
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"),
|
||||
)
|
||||
Reference in New Issue
Block a user