Skip to content

Commit

Permalink
Merge pull request #3481 from eed3si9n/wip/revert_bad_fport
Browse files Browse the repository at this point in the history
Revert "Automatically choose proper compiler bridge for dotty"
  • Loading branch information
eed3si9n committed Aug 28, 2017
2 parents 8412f02 + aaf259f commit c951b38
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions main/src/main/scala/sbt/Defaults.scala
Expand Up @@ -390,14 +390,7 @@ object Defaults extends BuildCommon {
val _ = clean.value
IvyActions.cleanCachedResolutionCache(ivyModule.value, streams.value.log)
},
scalaCompilerBridgeSource := {
if (ScalaInstance.isDotty(scalaVersion.value))
// Maintained at https://github.com/lampepfl/dotty/tree/master/sbt-bridge
ModuleID(scalaOrganization.value, "dotty-sbt-bridge", scalaVersion.value)
.withConfigurations(Some("component"))
.sources()
else ZincUtil.getDefaultBridgeModule(scalaVersion.value)
}
scalaCompilerBridgeSource := ZincUtil.getDefaultBridgeModule(scalaVersion.value)
)
// must be a val: duplication detected by object identity
private[this] lazy val compileBaseGlobal: Seq[Setting[_]] = globalDefaults(
Expand Down

0 comments on commit c951b38

Please sign in to comment.