Skip to content

Commit 7156ed7

Browse files
committed
Fix auto scala-library
1 parent 1d9d2b6 commit 7156ed7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/Build.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ object Build {
266266
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
267267
lazy val commonDottySettings = commonSettings ++ Seq(
268268
// Manually set the standard library to use
269-
autoScalaLibrary := false
269+
autoScalaLibrary := false,
270+
classpathOptions ~= (_.withAutoBoot(false).withFilterLibrary(false))
270271
)
271272

272273
lazy val commonScala2Settings = commonSettings ++ Seq(
@@ -286,7 +287,7 @@ object Build {
286287
scalaVersion := referenceVersion,
287288
excludeFromIDE := true,
288289

289-
disableDocSetting
290+
disableDocSetting,
290291
)
291292

292293
lazy val scalacOptionsDocSettings = Seq(

0 commit comments

Comments
 (0)