6502-opcodes/build.sbt

30 lines
624 B
Plaintext
Raw Normal View History

2022-12-01 06:37:17 -05:00
lazy val firepower =
2020-03-20 23:45:13 -04:00
project
.in(file("."))
2020-08-12 21:10:19 -04:00
.withCats
2020-08-15 00:49:07 -04:00
.withTesting
2022-12-04 18:36:11 -05:00
.aggregate(nescant, core, demo)
2020-08-28 02:18:25 -04:00
lazy val nescant =
2020-09-04 01:18:34 -04:00
project.withCats.withTesting
2022-05-15 01:09:48 -04:00
2022-12-04 18:36:11 -05:00
lazy val core =
module("core")
2022-05-15 01:09:48 -04:00
.withCats
2022-06-13 19:55:33 -04:00
.withTesting
2022-12-01 06:50:22 -05:00
lazy val demo =
module("demo")
2022-12-05 17:19:50 -05:00
.dependsOn(core)
2022-12-01 06:50:22 -05:00
.withEfectMonad
2022-12-07 13:36:57 -05:00
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "76-c565ab28")
2022-12-01 08:17:33 -05: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")
)