We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c676cda commit 041207aCopy full SHA for 041207a
project/Build.scala
@@ -264,7 +264,8 @@ object Build {
264
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
265
lazy val commonDottySettings = commonSettings ++ Seq(
266
// Manually set the standard library to use
267
- autoScalaLibrary := false
+ autoScalaLibrary := false,
268
+ classpathOptions ~= (_.withAutoBoot(false).withFilterLibrary(false))
269
)
270
271
lazy val commonScala2Settings = commonSettings ++ Seq(
@@ -284,7 +285,7 @@ object Build {
284
285
scalaVersion := referenceVersion,
286
excludeFromIDE := true,
287
- disableDocSetting
288
+ disableDocSetting,
289
290
291
// Settings used when compiling dotty with a non-bootstrapped dotty
0 commit comments