aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index be6a2a5..42ada89 100644
--- a/build.sbt
+++ b/build.sbt
@@ -52,7 +52,12 @@ lazy val tests = project
)
.dependsOn(examplesJVM)
-
+lazy val root = (project in file("."))
+ .aggregate(coreJVM, coreJS, coreNative, examplesJVM, examplesJS, examplesNative)
+ .settings(
+ publish := {},
+ publishLocal := {}
+ )
lazy val benchmarks = project
.in(file("benchmarks"))