Skip to content

Commit 952add2

Browse files
author
Hani Suleiman
committed
Oops, no excluded files
1 parent 98d0b03 commit 952add2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/groovy/org/scoverage/ScoverageExtension.groovy

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ class ScoverageExtension {
2424
File sources
2525
/** range positioning for highlighting */
2626
boolean highlighting = true
27-
/** regex of excluded packages, separated by colons */
27+
/** regex of excluded packages, separated by semicolons */
2828
String excludedPackages = ""
29-
/** regex of excluded files, separated by colons */
30-
String excludedFiles = ""
3129

3230
ScoverageExtension(Project project) {
3331

@@ -90,7 +88,6 @@ class ScoverageExtension {
9088
}
9189
plugin.add("-P:scoverage:dataDir:${extension.dataDir.absolutePath}".toString())
9290
plugin.add("-P:scoverage:excludedPackages:${extension.excludedPackages}")
93-
plugin.add("-P:scoverage:excludedFiles:${extension.excludedFiles}")
9491
if (extension.highlighting) {
9592
plugin.add('-Yrangepos')
9693
}

0 commit comments

Comments
 (0)