I have "org.scoverage" %% "scalac-scoverage-plugin" % "2.0.8"
under my library dependencies in my build.sbt, and
scalaVersion := "2.13.1"
lazy val root = (project in file(".")).
settings(
name := "<redacted>",
version := "0.1",
scalaVersion := "2.13.1"
)
is up at the top, yet when it tries to resolve, it tries resolve scalaVersion 2.13 not 2.13.1
https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-plugin_2.13/2.0.8/scalac-scoverage-plugin_2.13-2.0.8.pom
How can i get it to keep the .1
at the end?
Alternatively, im trying to do this instead of just the normal plugin way. but if i try the plugin way addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
I get from running sbt clean coverage test
not found: https://repo1.maven.org/maven2/org/scoverage/scalac-scoverage-plugin_2.13.1/2.0.10/scalac-scoverage-plugin_2.13.1-2.0.10.pom
Which doesnt make sense, because no where in my build or anything have I specified 2.0.10 as the lib version.