@@ -1110,20 +1110,26 @@ object Build {
1110
1110
// depend on it via scala3-library, because sbt may rewrite dependencies
1111
1111
// (see https://github.com/sbt/sbt/pull/2634), but won't rewrite the direct
1112
1112
// dependencies of scala-library (see https://github.com/sbt/sbt/pull/2897)
1113
- libraryDependencies += " org.scala-lang" % " scala-library" % stdlibVersion(Bootstrapped )
1113
+ libraryDependencies += " org.scala-lang" % " scala-library" % stdlibVersion(Bootstrapped ),
1114
+ publish / skip := true
1114
1115
)
1115
1116
1116
1117
lazy val `scala-compiler` = project.
1117
- settings(commonDummySettings)
1118
+ settings(commonDummySettings).
1119
+ settings(
1120
+ publish / skip := true
1121
+ )
1118
1122
lazy val `scala-reflect` = project.
1119
1123
settings(commonDummySettings).
1120
1124
settings(
1121
- libraryDependencies := Seq (" org.scala-lang" % " scala-reflect" % stdlibVersion(Bootstrapped ))
1125
+ libraryDependencies := Seq (" org.scala-lang" % " scala-reflect" % stdlibVersion(Bootstrapped )),
1126
+ publish / skip := true
1122
1127
)
1123
1128
lazy val scalap = project.
1124
1129
settings(commonDummySettings).
1125
1130
settings(
1126
- libraryDependencies := Seq (" org.scala-lang" % " scalap" % stdlibVersion(Bootstrapped ))
1131
+ libraryDependencies := Seq (" org.scala-lang" % " scalap" % stdlibVersion(Bootstrapped )),
1132
+ publish / skip := true
1127
1133
)
1128
1134
1129
1135
@@ -1382,9 +1388,9 @@ object Build {
1382
1388
// non-bootstrapped compiler), so publish the bootstrapped one by
1383
1389
// default.
1384
1390
addCommandAlias(" publishLocal" , " scala3-bootstrapped/publishLocal" ),
1385
- )
1386
- . settings(
1387
- publishArtifact := false
1391
+ ).
1392
+ settings(
1393
+ publish / skip := true
1388
1394
)
1389
1395
1390
1396
def asDottyCompiler (implicit mode : Mode ): Project = project.withCommonSettings.
0 commit comments