Trying to get sbt-scoverage-scalajs to run. Using addSbtPlugin("ch.sidorenko.scoverage" % "sbt-scoverage-scalajs" % "1.0.5-JS3") I get unresolved dependency: ch.sidorenko.scoverage#sbt-scoverage;1.0.5-JS3: not found.
When I visit https://dl.bintray.com/ssidorenko/sbt-plugins/ I see there is a sbt-scoverage-scalajs with versions 1.0.5-JS3 as well as 1.1.0-JS. However sbt-scoverage only has 1.1.0-JS version.
Naturally, I updated the call to addSbtPlugin to 1.1.0-JS, but then I get java.lang.NoSuchMethodError: org.scalajs.sbtplugin.ScalaJSPluginInternal$.scalaJSDefaultPostLinkJSEnv()Lsbt/TaskKey;
Looking in build.sbt, I see addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.2"). The current version for sbt-scalajs is 0.6.8. Might that be the reason for the NoSuchMethodError?
Trying to get sbt-scoverage-scalajs to run. Using
addSbtPlugin("ch.sidorenko.scoverage" % "sbt-scoverage-scalajs" % "1.0.5-JS3")
I getunresolved dependency: ch.sidorenko.scoverage#sbt-scoverage;1.0.5-JS3: not found
.When I visit https://dl.bintray.com/ssidorenko/sbt-plugins/ I see there is a sbt-scoverage-scalajs with versions 1.0.5-JS3 as well as 1.1.0-JS. However sbt-scoverage only has 1.1.0-JS version.
Naturally, I updated the call to addSbtPlugin to 1.1.0-JS, but then I get
java.lang.NoSuchMethodError: org.scalajs.sbtplugin.ScalaJSPluginInternal$.scalaJSDefaultPostLinkJSEnv()Lsbt/TaskKey;
Looking in build.sbt, I see
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.2")
. The current version for sbt-scalajs is 0.6.8. Might that be the reason for the NoSuchMethodError?Suggestions?