diff --git a/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/build.sbt b/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/build.sbt index 099cd9f71..124a017c3 100644 --- a/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/build.sbt +++ b/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/build.sbt @@ -1,16 +1,15 @@ -// hardcode dottyVersion to make test deterministic -lazy val dottyVersion = "0.8.0-bin-20180424-e77604d-NIGHTLY" +lazy val dottyVersion = "0.11.0-RC1" + +ThisBuild / scalaVersion := dottyVersion +ThisBuild / organization := "com.example" lazy val plugin = (project in file("plugin")) .settings( name := "dividezero", - version := "0.0.1", - organization := "ch.epfl.lamp", - scalaVersion := dottyVersion, + version := "0.0.1" ) lazy val app = (project in file(".")) .settings( - scalaVersion := dottyVersion, - libraryDependencies += compilerPlugin("ch.epfl.lamp" %% "dividezero" % "0.0.1"), + libraryDependencies += compilerPlugin("com.example" %% "dividezero" % "0.0.1"), ) diff --git a/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/test b/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/pending similarity index 100% rename from sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/test rename to sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/pending diff --git a/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/project/plugins.sbt b/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/project/plugins.sbt index ba89aa2bb..174dbbcb8 100644 --- a/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/project/plugins.sbt +++ b/sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.2.0") +addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.2.6")