You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lazyvalcoverage= taskKey[Unit]("enable compiled code with instrumentation")
@@ -33,6 +33,8 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
33
33
34
34
importScoverageKeys._
35
35
36
+
valaggregateFilter=ScopeFilter( inAggregates(ThisProject), inConfigurations(Compile) ) // must be outside of the 'coverageAggregate' task (see: https://github.com/sbt/sbt/issues/1095 or https://github.com/sbt/sbt/issues/780)
37
+
36
38
overridedeftrigger= allRequirements
37
39
overridelazyvalprojectSettings=Seq(
38
40
@@ -49,8 +51,7 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
49
51
50
52
loadCoverage(target, s) match {
51
53
caseSome(cov) => writeReports(target,
52
-
baseDirectory.value,
53
-
(scalaSource in Compile).value,
54
+
(sourceDirectories in Compile).value,
54
55
cov,
55
56
coverageOutputCobertua.value,
56
57
coverageOutputXML.value,
@@ -68,12 +69,12 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
68
69
coverageAggregate := {
69
70
vals= (streams in Global).value
70
71
s.log.info(s"Aggregating coverage from subprojects...")
71
-
valbase= baseDirectory.value
72
-
CoverageAggregator.aggregate(base, coverageCleanSubprojectFiles.value) match {
0 commit comments