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
valcoverageFailOnMinimum= settingKey[Boolean]("if coverage is less than this value then fail build")
25
25
valcoverageHighlighting= settingKey[Boolean]("enables range positioning for highlighting")
26
-
valcoverageOutputCobertua= settingKey[Boolean]("enables cobertura XML report generation")
26
+
valcoverageOutputCobertura= settingKey[Boolean]("enables cobertura XML report generation")
27
27
valcoverageOutputXML= settingKey[Boolean]("enables xml report generation")
28
28
valcoverageOutputHTML= settingKey[Boolean]("enables html report generation")
29
29
valcoverageOutputDebug= settingKey[Boolean]("turn on the debug report")
@@ -34,7 +34,7 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
34
34
35
35
importScoverageKeys._
36
36
37
-
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
+
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)
38
38
39
39
overridedeftrigger= allRequirements
40
40
overridelazyvalprojectSettings=Seq(
@@ -58,7 +58,7 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
58
58
caseSome(cov) => writeReports(target,
59
59
(sourceDirectories in Compile).value,
60
60
cov,
61
-
coverageOutputCobertua.value,
61
+
coverageOutputCobertura.value,
62
62
coverageOutputXML.value,
63
63
coverageOutputHTML.value,
64
64
coverageOutputDebug.value,
@@ -81,7 +81,7 @@ class ScoverageSbtPlugin extends sbt.AutoPlugin {
0 commit comments