aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/project/Build.scala b/project/Build.scala
index f0e14fbc4..31cf53cac 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -380,7 +380,7 @@ object DottyBuild extends Build {
overrideScalaVersionSetting,
cleanSbtBridge := {
- val dottyBridgeVersion = version.value
+ val dottySbtBridgeVersion = version.value
val dottyVersion = (version in `dotty-compiler`).value
val classVersion = System.getProperty("java.class.version")
@@ -392,8 +392,8 @@ object DottyBuild extends Build {
val org = organization.value
val artifact = moduleName.value
- IO.delete(file(home) / ".ivy2" / "cache" / sbtOrg / s"$org-$artifact-$dottyBridgeVersion-bin_${dottyVersion}__$classVersion")
- IO.delete(file(home) / ".sbt" / "boot" / s"scala-$sbtScalaVersion" / sbtOrg / "sbt" / sbtV / s"$org-$artifact-$dottyBridgeVersion-bin_${dottyVersion}__$classVersion")
+ IO.delete(file(home) / ".ivy2" / "cache" / sbtOrg / s"$org-$artifact-$dottySbtBridgeVersion-bin_${dottyVersion}__$classVersion")
+ IO.delete(file(home) / ".sbt" / "boot" / s"scala-$sbtScalaVersion" / sbtOrg / "sbt" / sbtV / s"$org-$artifact-$dottySbtBridgeVersion-bin_${dottyVersion}__$classVersion")
},
publishLocal := (publishLocal.dependsOn(cleanSbtBridge)).value,
description := "sbt compiler bridge for Dotty",
@@ -449,7 +449,7 @@ object DottyInjectedPlugin extends AutoPlugin {
scalaBinaryVersion := "2.11",
autoScalaLibrary := false,
libraryDependencies ++= Seq("org.scala-lang" % "scala-library" % "2.11.5"),
- scalaCompilerBridgeSource := ("ch.epfl.lamp" % "dotty-bridge" % "0.1.1-SNAPSHOT" % "component").sources()
+ scalaCompilerBridgeSource := ("ch.epfl.lamp" % "dotty-sbt-bridge" % "0.1.1-SNAPSHOT" % "component").sources()
)
}
""")