Skip to content

Commit ebce78f

Browse files
authored
Merge pull request #207 from msigmond/master
A hint for Kotlin DSL users
2 parents 9e6c5b3 + 7efebd8 commit ebce78f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,15 @@ scoverage {
107107
coverageType = CoverageType.Statement
108108
}
109109
}
110-
```
110+
```
111+
112+
In case you use the Kotlin DSL, the following snippet can give you pointers for configuring Scoverage:
113+
```kotlin
114+
scoverage {
115+
minimumRate.set(BigDecimal("0.80"))
116+
excludedPackages.set(listOf<String>("com.example.scala.demo"))
117+
}
118+
```
111119

112120
### Compatibility with Consistent Versions Plugin
113121

0 commit comments

Comments
 (0)