diff --git a/README.md b/README.md index 7a14dad3..c279783d 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,11 @@ In `project/plugins.sbt`: addSbtPlugin("org.scoverage" % "sbt-scoverage" % "x.x.x") ``` +If you are in an enterprise environment, and the above does not work, try: +```scala +libraryDependencies += "org.scoverage" % "sbt-scoverage_2.12_1.0" % "x.x.x" +``` + ## Usage Run the tests with enabled coverage: diff --git a/project/plugins.sbt b/project/plugins.sbt index 19695c2e..7f164332 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,3 +2,4 @@ libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") +addSbtPlugin("com.scalawilliam.esbeetee" % "sbt-vspp" % "0.4.11")