Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to use sbt plugin published in Scala 2 ? #36

Closed
exoego opened this issue Dec 20, 2019 · 1 comment
Closed

How to use sbt plugin published in Scala 2 ? #36

exoego opened this issue Dec 20, 2019 · 1 comment

Comments

@exoego
Copy link

exoego commented Dec 20, 2019

This section described how to use normal dependencies published for Scala 2.

I think it would be great if the section also mention regarding sbt plugin, for people like me who lack of in-depth understadning sbt.

When I updated my project/plugins.sbt like below:

def dottySupport(moduleId: ModuleID): ModuleID = moduleId.withDottyCompat(scalaVersion.value)

addSbtPlugin(dottySupport("org.scala-js" % "sbt-scalajs" % "0.6.31"))
addSbtPlugin(dottySupport("org.scalameta" % "sbt-scalafmt" % "2.3.0"))

error: value withDottyCompat is not a member of sbt.ModuleID occured.

@exoego exoego changed the title How to use sbt plugin published in Scala 2.13 ? How to use sbt plugin published in Scala 2 ? Dec 20, 2019
@smarter
Copy link
Member

smarter commented Jun 25, 2020

sbt plugins are only published for Scala 2, because sbt itself is only compiled with Scala 2, so there is nothing special to do to use them (in other words, just remove the dottySupport method you added). In more details: the .sbt files inside project are not part of your build but part of the meta-build, which uses its own scala version (the one that sbt currently uses) and is not affected by the scala version set in your build.

@smarter smarter closed this as completed Jun 25, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants