From 35f088152dc6eaee9212560b5467258c3cf88301 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Wed, 2 Sep 2020 19:15:17 -0700 Subject: [PATCH] Set publish project directory to .publish It is undefined behavior in sbt to have multiple projects that have the same path. Both the root and publish projects have were defined to be in the base directory (file(".")). With older versions of sbt, only the publish project would appear when running the `projects` command. With sbt 1.4.0-M2, only root appears when running the `projects` command. After applying this change, both root and publish appear. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index bb8c2ec2..0c6de5ea 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ lazy val root = (project in file(".")) .aggregate(athemaJVM, athemaJS) .aggregate(readme) -lazy val publish = (project in file(".")) +lazy val publish = (project in file(".publish")) .settings(noPublishSettings) .disablePlugins(MimaPlugin) .aggregate(coreJVM, coreJS)