Exclude bundledLauncherProj from upperModules

This commit is contained in:
Eugene Yokota 2020-11-14 21:22:29 -05:00
parent 868d804679
commit 427966a2bc
1 changed files with 4 additions and 1 deletions

View File

@ -1268,7 +1268,10 @@ lazy val lowerUtils = (project in (file("internal") / "lower"))
)
lazy val upperModules = (project in (file("internal") / "upper"))
.aggregate((allProjects diff lowerUtilProjects).map(p => LocalProject(p.id)): _*)
.aggregate(
((allProjects diff lowerUtilProjects)
diff Seq(bundledLauncherProj)).map(p => LocalProject(p.id)): _*
)
.settings(
publish / skip := true,
crossScalaVersions := Nil,