Merge pull request #2903 from smarter/fix/dotty-nightlies

Fix support for published dotty nightly builds
This commit is contained in:
eugene yokota 2017-01-11 11:01:27 -05:00 committed by GitHub
commit 55efa89ca3
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ object ScalaArtifacts {
private[sbt] def toolDependencies(org: String, version: String, isDotty: Boolean = false): Seq[ModuleID] =
if (isDotty)
Seq(ModuleID(org, DottyIDPrefix, version, Some(Configurations.ScalaTool.name + "->compile"),
Seq(ModuleID(org, DottyIDPrefix, version, Some(Configurations.ScalaTool.name + "->default(compile)"),
crossVersion = CrossVersion.binary))
else
Seq(scalaToolDependency(org, ScalaArtifacts.CompilerID, version),