diff --git a/README.md b/README.md index e46cca0..f5fd7b1 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,15 @@ scoverage { coverageType = CoverageType.Statement } } -``` +``` + +In case you use the Kotlin DSL, the following snippet can give you pointers for configuring Scoverage: +```kotlin +scoverage { + minimumRate.set(BigDecimal("0.80")) + excludedPackages.set(listOf("com.example.scala.demo")) +} +``` ### Compatibility with Consistent Versions Plugin