Skip to content

Commit

Permalink
Fix migration to 0.6.0 documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
NinoDLC authored Sep 19, 2022
1 parent d72c49d commit 1d75e05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/migration-to-0.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,10 @@ Solution:
#### type of `excludes` property changed from `List<String>` to `ListProperty<String>`

Solution for Kotlin: change `excludes = listOf("com.example.*", "foo.bar.*")`
to `includes.addAll("com.example.*", "foo.bar.*")`
to `excludes.addAll("com.example.*", "foo.bar.*")`

Solution for Groovy: change `excludes = ["com.example.*", "foo.bar.*"]`
to `includes.addAll("com.example.*", "foo.bar.*")`
to `excludes.addAll("com.example.*", "foo.bar.*")`

### `koverXmlReport` and `koverMergedXmlReport` tasks configuration

Expand Down

0 comments on commit 1d75e05

Please sign in to comment.