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.
2 parents 6df672c + 8790290 commit 63083f1Copy full SHA for 63083f1
project/Build.scala
@@ -105,7 +105,12 @@ object DottyBuild extends Build {
105
(dottyOrganization % "dotty-sbt-bridge" % scalaVersion.value % "component").sources(),
106
107
// sbt gets very unhappy if two projects use the same target
108
- target := baseDirectory.value / ".." / "out" / name.value
+ target := baseDirectory.value / ".." / "out" / name.value,
109
+
110
+ // The non-bootstrapped dotty-library is not necessary when bootstrapping dotty
111
+ autoScalaLibrary := false,
112
+ // ...but scala-library is
113
+ libraryDependencies += "org.scala-lang" % "scala-library" % scalacVersion
114
)
115
116
/** Projects -------------------------------------------------------------- */
0 commit comments