You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because the isDotty setting added to sbt-spiewak in #54 conflicts with the one in the DottyPlugin used in the community build:
/__w/dotty/dotty/community-build/community-projects/http4s/build.sbt:1059: error: reference to isDotty is ambiguous;
it is imported twice in the same scope by
import _root_.sbtspiewak.SpiewakPlugin.autoImport._
and import _root_.dotty.tools.sbtplugin.DottyPlugin.autoImport._
if (isDotty.value && githubIsWorkflowBuild.value)
Currently, all the projects in the CB using sbt-spiewak are using an old version of the plugin. But this means they cannot be updated.
I've asked in scala/scala3#14071 (comment) if the DottyPlugin is still needed since it was merged into sbt. However, is the isDotty setting still necessary for sbt-spiewak? According to sbt/sbt#6080isDotty has been renamed to isScala3 in sbt.
The text was updated successfully, but these errors were encountered:
This is because the
isDotty
setting added to sbt-spiewak in #54 conflicts with the one in theDottyPlugin
used in the community build:Currently, all the projects in the CB using sbt-spiewak are using an old version of the plugin. But this means they cannot be updated.
I've asked in scala/scala3#14071 (comment) if the
DottyPlugin
is still needed since it was merged into sbt. However, is theisDotty
setting still necessary for sbt-spiewak? According to sbt/sbt#6080isDotty
has been renamed toisScala3
in sbt.The text was updated successfully, but these errors were encountered: