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 b9692b0 commit 460556cCopy full SHA for 460556c
project/Build.scala
@@ -257,7 +257,8 @@ object Build {
257
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
258
lazy val commonDottySettings = commonSettings ++ Seq(
259
// Manually set the standard library to use
260
- autoScalaLibrary := false
+ autoScalaLibrary := false,
261
+ classpathOptions ~= (_.withAutoBoot(false).withFilterLibrary(false))
262
)
263
264
lazy val commonScala2Settings = commonSettings ++ Seq(
@@ -277,7 +278,7 @@ object Build {
277
278
scalaVersion := referenceVersion,
279
excludeFromIDE := true,
280
- disableDocSetting
281
+ disableDocSetting,
282
283
284
// Settings used when compiling dotty with a non-bootstrapped dotty
0 commit comments