Skip to content

Commit

Permalink
Update sbt-scoverage and work around typelevel#201
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed Nov 7, 2016
1 parent c155cdb commit 60ed5f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ lazy val botBuild = settingKey[Boolean]("Build by TravisCI instead of local dev

lazy val scoverageSettings = Seq(
coverageMinimum := 60,
coverageFailOnMinimum := false
coverageFailOnMinimum := false,
coverageScalacPluginVersion := "1.3.0"
)

lazy val buildSettings = Seq(
Expand Down
4 changes: 3 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
resolvers += Resolver.sonatypeRepo("releases")

addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.11")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.3")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.2.16")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0-RC2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.13")
addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.4.1")
Expand Down

0 comments on commit 60ed5f2

Please sign in to comment.