From 33b4db3dafc9e8beb692be27a46cace89eee85d3 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 3 Jan 2019 17:24:05 -0500 Subject: [PATCH] mark dotty-compiler-plugin pending Ref https://github.com/lampepfl/dotty/issues/5671 --- .../dotty-compiler-plugin/build.sbt | 13 ++++++------- .../dotty-compiler-plugin/{test => pending} | 0 .../dotty-compiler-plugin/project/plugins.sbt | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) rename sbt/src/sbt-test/compiler-project/dotty-compiler-plugin/{test => pending} (100%) 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")