Skip to content

Commit

Permalink
feat!: add laws
Browse files Browse the repository at this point in the history
  • Loading branch information
csgn committed Sep 12, 2024
1 parent 9cad117 commit 72595d7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@ lazy val tests = project
)
.enablePlugins(ScalafixPlugin, AutomateHeaderPlugin)

lazy val laws = project
.in(file("laws"))
.dependsOn(core)
.settings(commonSettings)
.settings(
name := "laws",
publish / skip := true,
)
.enablePlugins(ScalafixPlugin, AutomateHeaderPlugin)

lazy val core = project
.in(file("core"))
.settings(commonSettings)
Expand All @@ -90,4 +100,4 @@ lazy val core = project

lazy val kuram = project
.in(file("."))
.aggregate(core, tests, example)
.aggregate(core, laws, tests, example)

0 comments on commit 72595d7

Please sign in to comment.