mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-11-15 12:07:50 +00:00
30 lines
624 B
Scala
30 lines
624 B
Scala
lazy val firepower =
|
|
project
|
|
.in(file("."))
|
|
.withCats
|
|
.withTesting
|
|
.aggregate(nescant, core, demo)
|
|
|
|
lazy val nescant =
|
|
project.withCats.withTesting
|
|
|
|
lazy val core =
|
|
module("core")
|
|
.withCats
|
|
.withTesting
|
|
|
|
lazy val demo =
|
|
module("demo")
|
|
.dependsOn(core)
|
|
.withEfectMonad
|
|
.settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "74-5cd25e9b")
|
|
|
|
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")
|
|
)
|