@@ -1435,6 +1435,22 @@ object Build {
1435
1435
// =================================== BOOTSTRAPPED PROJECTS ====================================
1436
1436
// ==============================================================================================
1437
1437
1438
+ lazy val `scala3-bootstrapped-new` = project
1439
+ .aggregate(`scala3-interfaces`, `scala3-library-bootstrapped-new` , `scala-library-bootstrapped`,
1440
+ `tasty-core-bootstrapped-new`, `scala3-compiler-bootstrapped-new`, `scala3-sbt-bridge-bootstrapped`)
1441
+ .settings(
1442
+ name := " scala3-bootstrapped" ,
1443
+ moduleName := " scala3-bootstrapped" ,
1444
+ version := dottyVersion,
1445
+ // Nothing to be published by this project, it is only an aggregate
1446
+ Compile / publishArtifact := false ,
1447
+ Test / publishArtifact := false ,
1448
+ // Nothing to be published by this project
1449
+ publish / skip := true ,
1450
+ // Project specific target folder. sbt doesn't like having two projects using the same target folder
1451
+ target := target.value / " scala3-bootstrapped" ,
1452
+ )
1453
+
1438
1454
/* Configuration of the org.scala-lang:scala3-sbt-bridge:*.**.**-bootstrapped project */
1439
1455
lazy val `scala3-sbt-bridge-bootstrapped` = project.in(file(" sbt-bridge" ))
1440
1456
.dependsOn(`scala3-compiler-bootstrapped`) // TODO: Would this actually evict the reference compiler in scala-tool?
0 commit comments