From 3f290ac70e8bf5ac31e030332c1b60f21741d6ec Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Sat, 29 Apr 2023 10:06:14 +0200 Subject: [PATCH] Set name for root level project --- build.sbt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index 82542c7e..39ff57b3 100644 --- a/build.sbt +++ b/build.sbt @@ -39,6 +39,9 @@ lazy val jawnSettingsNative = Seq( lazy val root = tlCrossRootProject .aggregate(parser, util, ast, benchmark) + .settings( + name := "jawn-root" + ) lazy val parser = crossProject(JVMPlatform, JSPlatform, NativePlatform) .crossType(CrossType.Full)