File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,16 @@ A Kotlin compiler plugin that annotates Kotlin-generated methods with `lombok.Ge
33that these methods have been generated by the compiler.
44
55## JaCoCo solution (new)
6- Please note that JaCoCo recently landed support for recognizing Kotlin-generated
7- code, so we suggest using one of their snapshots builds (0.8.2-SNAPSHOT+) instead if possible.
8- It has the advantage of not polluting your code with ` lombok.Generated ` annotations.
6+ Please note that JaCoCo landed support for recognizing Kotlin-generated
7+ code in 0.8.2, so we advise using that instead if possible.
8+ It has the advantage of not polluting your code with ` lombok.Generated `
9+ annotations.
910
1011In Gradle, you can do that as follows:
1112
1213``` groovy
13- repositories {
14- // This repository is needed to get the latest snapshot of JaCoCo
15- maven { url = "https://oss.sonatype.org/content/repositories/snapshots" }
16- }
17-
1814jacoco {
19- toolVersion = '0.8.2-SNAPSHOT '
15+ toolVersion = '0.8.2'
2016}
2117```
2218
You can’t perform that action at this time.
0 commit comments