Skip to content

Commit

Permalink
Merge pull request #349 from ckipp01/scalac-scoveage
Browse files Browse the repository at this point in the history
Bump scoverage version to 1.4.6
  • Loading branch information
ckipp01 authored May 10, 2021
2 parents 34490a3 + ea3e142 commit cadb042
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "sbt-scoverage"

import sbt.ScriptedPlugin.autoImport.scriptedLaunchOpts

def scoverageVersion = "1.4.5"
def scoverageVersion = "1.4.6"

inThisBuild(
List(
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/scoverage/ScoverageSbtPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ object ScoverageSbtPlugin extends AutoPlugin {
Seq(
// We only add for "compile" because of macros. This setting could be optimed to just "test" if the handling
// of macro coverage was improved.
(orgScoverage %% (scalacRuntime(
orgScoverage %% (scalacRuntime(
libraryDependencies.value
)) % coverageScalacPluginVersion.value).cross(CrossVersion.full),
)) % coverageScalacPluginVersion.value,
// We don't want to instrument the test code itself, nor add to a pom when published with coverage enabled.
(orgScoverage %% scalacPluginArtifact % coverageScalacPluginVersion.value % ScoveragePluginConfig.name)
.cross(CrossVersion.full)
Expand Down

0 comments on commit cadb042

Please sign in to comment.