简体   繁体   中英

Issues with using Scoverage: Scala Sbt

I added the scoverage plugin to projects/plugins.sbt

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")

I was able to generate test coverage using

sbt clean coverage test
sbt coveragereport

However when I try to add socverage config to my build.sbt. I see build errors

error: value ScoverageKeys is not a member of object scoverage.ScoverageSbtPlugin
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 70

Looks like build.sbt does not find Scoverage classes. What is going on here?

check that out. Seems like what you need is:

scoverage.ScoverageKeys.coverageMinimum := 70

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM