6502-opcodes/build.sbt
2022-12-01 08:17:33 -05:00

32 lines
687 B
Scala

lazy val firepower =
project
.in(file("."))
.settings(
console / initialCommands := "import com.htmlism._"
)
.withCats
.withTesting
.aggregate(nescant, scratchpad, demo)
lazy val nescant =
project.withCats.withTesting
lazy val scratchpad =
project
.withCats
.withTesting
lazy val demo =
module("demo")
.withEfectMonad
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "71-5394aaef")
ThisBuild / resolvers += "mcanlas/rufio" at "https://maven.pkg.github.com/mcanlas/rufio/"
ThisBuild / credentials += Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
"mcanlas",
sys.env("GH_PACKAGES_TOKEN")
)