From 72595d776465a888c923c07e5bcb329291104a14 Mon Sep 17 00:00:00 2001 From: csgn Date: Thu, 12 Sep 2024 23:06:54 +0300 Subject: [PATCH] feat!: add laws --- build.sbt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5472247..44db67d 100644 --- a/build.sbt +++ b/build.sbt @@ -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) @@ -90,4 +100,4 @@ lazy val core = project lazy val kuram = project .in(file(".")) - .aggregate(core, tests, example) + .aggregate(core, laws, tests, example)