6502-opcodes/build.sbt

32 lines
687 B
Plaintext
Raw Normal View History

2022-12-01 11:37:17 +00:00
lazy val firepower =
2020-03-21 03:45:13 +00:00
project
.in(file("."))
.settings(
2022-10-17 03:42:16 +00:00
console / initialCommands := "import com.htmlism._"
2020-03-21 03:45:13 +00:00
)
2020-08-13 01:10:19 +00:00
.withCats
2020-08-15 04:49:07 +00:00
.withTesting
2022-12-01 11:50:22 +00:00
.aggregate(nescant, scratchpad, demo)
2020-08-28 06:18:25 +00:00
lazy val nescant =
2020-09-04 05:18:34 +00:00
project.withCats.withTesting
2022-05-15 05:09:48 +00:00
lazy val scratchpad =
project
.withCats
2022-06-13 23:55:33 +00:00
.withTesting
2022-12-01 11:50:22 +00:00
lazy val demo =
module("demo")
.withEfectMonad
2022-12-04 18:01:22 +00:00
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "74-5cd25e9b")
2022-12-01 13:17:33 +00:00
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")
)