You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-14
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,7 @@ Kover Toolset:
14
14
-[Kover features artifact](#kover-features-artifact)
15
15
16
16
## Kover Gradle Plugin
17
-
For full information about latest stable release of Kover Gradle Plugin, please refer to the [documentation of the latest stable release](https://kotlin.github.io/kotlinx-kover/gradle-plugin).
18
-
19
-
A beta version of the plugin is also available. The DSL of this version is unstable and can be changed after receiving feedback.
20
-
Detailed documentation is in the process of being written, please refer to the [migration guide](/kover-gradle-plugin/docs/migrations/migration-to-0.8.0.md).
17
+
For full information about latest stable release of Kover Gradle Plugin, please refer to the [documentation](https://kotlin.github.io/kotlinx-kover/gradle-plugin).
21
18
22
19
### Features
23
20
@@ -41,7 +38,7 @@ Add the following to your top-level build file:
41
38
42
39
```kotlin
43
40
plugins {
44
-
id("org.jetbrains.kotlinx.kover") version "0.7.6"
41
+
id("org.jetbrains.kotlinx.kover") version "0.8.0"
45
42
}
46
43
```
47
44
</details>
@@ -51,13 +48,13 @@ plugins {
51
48
52
49
```groovy
53
50
plugins {
54
-
id 'org.jetbrains.kotlinx.kover' version '0.7.6'
51
+
id 'org.jetbrains.kotlinx.kover' version '0.8.0'
55
52
}
56
53
```
57
54
</details>
58
55
59
-
After you applied Kover Gradle plugin, [Kover tasks](https://kotlin.github.io/kotlinx-kover/gradle-plugin#kover-tasks) will be created for generating reports and verification.
60
-
E.g. to generate HTML report for non-Android project run `./gradlew koverHtmlReport` - this will automatically start code compilation, execution of instrumented tests, and an HTML report will be generated with measurement results in the build folder.
56
+
After you applied Kover Gradle plugin, Kover tasks will be created for generating reports and verification.
57
+
E.g. to generate HTML report run `./gradlew koverHtmlReport` - this will automatically start code compilation, execution of instrumented tests, and an HTML report will be generated with measurement results in the build folder.
61
58
62
59
It is also important that after applying Kover Gradle plugin, during the running tests, the classes are modified (instrumented) when loaded into the JVM which may lead to some performance degradation, or affect concurrent tests.
0 commit comments