From 879029010979ebd27a110f860005eddd2e7e2dcd Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Thu, 16 Feb 2017 14:57:44 +0100 Subject: Bootstrapped dotty should not depend on non-bootstrapped dotty-library --- project/Build.scala | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'project') diff --git a/project/Build.scala b/project/Build.scala index 730632b74..2d4ac65d4 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -105,7 +105,12 @@ object DottyBuild extends Build { (dottyOrganization % "dotty-sbt-bridge" % scalaVersion.value % "component").sources(), // sbt gets very unhappy if two projects use the same target - target := baseDirectory.value / ".." / "out" / name.value + target := baseDirectory.value / ".." / "out" / name.value, + + // The non-bootstrapped dotty-library is not necessary when bootstrapping dotty + autoScalaLibrary := false, + // ...but scala-library is + libraryDependencies += "org.scala-lang" % "scala-library" % scalacVersion ) /** Projects -------------------------------------------------------------- */ -- cgit v1.2.3