From 1c593f63de77a2ad4cf889a1f41da0356b894d64 Mon Sep 17 00:00:00 2001 From: Lars Hupel Date: Tue, 16 Feb 2021 19:46:09 +0100 Subject: [PATCH 1/3] update sbt versions --- project/build.properties | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/build.properties b/project/build.properties index 0837f7a1..0b2e09c5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.3.13 +sbt.version=1.4.7 diff --git a/project/plugins.sbt b/project/plugins.sbt index 4f4f0cf3..18425b49 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.5") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.17") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.4") -addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.6") +addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3") addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.25") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.0.0") From edf077e1baea3b911706f0a13c093e556c199dea Mon Sep 17 00:00:00 2001 From: Lars Hupel Date: Tue, 16 Feb 2021 21:24:45 +0100 Subject: [PATCH 2/3] add workaround --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 77c5fccb..cfa43d1f 100644 --- a/build.sbt +++ b/build.sbt @@ -138,7 +138,8 @@ val sharedSettings = List( "-Ywarn-unused:imports" ) } - } + }, + Test / scalacOptions := (Compile / scalacOptions).value ) lazy val junit = project From 501625c1c65ccba303cd5cd84665007c4811a80c Mon Sep 17 00:00:00 2001 From: Lars Hupel Date: Tue, 16 Feb 2021 21:28:58 +0100 Subject: [PATCH 3/3] add link to ticket --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index cfa43d1f..38113820 100644 --- a/build.sbt +++ b/build.sbt @@ -139,6 +139,7 @@ val sharedSettings = List( ) } }, + // see Test / scalacOptions := (Compile / scalacOptions).value )