aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-11-22 14:45:41 +0100
committerFelix Mulder <felix.mulder@gmail.com>2016-11-22 16:22:24 +0100
commita04b4587569d3657ca6f78793f318bcb3cc76841 (patch)
tree28be27d255d554003aebdac9d782a6ac49f5dd13 /project
parentc477ab8be70b99759bd7653835d1037d05a54e85 (diff)
downloaddotty-a04b4587569d3657ca6f78793f318bcb3cc76841.tar.gz
dotty-a04b4587569d3657ca6f78793f318bcb3cc76841.tar.bz2
dotty-a04b4587569d3657ca6f78793f318bcb3cc76841.zip
dotty-bridge is now called dotty-sbt-bridge
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()
)
}
""")