File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/main/groovy/org/scoverage Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,8 @@ class ScoverageExtension {
24
24
File sources
25
25
/* * range positioning for highlighting */
26
26
boolean highlighting = true
27
- /* * regex of excluded packages, separated by colons */
27
+ /* * regex of excluded packages, separated by semicolons */
28
28
String excludedPackages = " "
29
- /* * regex of excluded files, separated by colons */
30
- String excludedFiles = " "
31
29
32
30
ScoverageExtension (Project project ) {
33
31
@@ -90,7 +88,6 @@ class ScoverageExtension {
90
88
}
91
89
plugin. add(" -P:scoverage:dataDir:${ extension.dataDir.absolutePath} " . toString())
92
90
plugin. add(" -P:scoverage:excludedPackages:${ extension.excludedPackages} " )
93
- plugin. add(" -P:scoverage:excludedFiles:${ extension.excludedFiles} " )
94
91
if (extension. highlighting) {
95
92
plugin. add(' -Yrangepos' )
96
93
}
You can’t perform that action at this time.
0 commit comments