File tree Expand file tree Collapse file tree 1 file changed +7
-13
lines changed
Expand file tree Collapse file tree 1 file changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,13 @@ group = "com.github.monosoul"
99plugins {
1010 id(" org.jetbrains.intellij" ) version " 1.10.0"
1111 kotlin(" jvm" ) version " 1.7.22"
12- jacoco
12+ id(" org.jetbrains.kotlinx.kover" ) version " 0.6.1"
13+ }
14+
15+ kover {
16+ xmlReport {
17+ onCheck.set(true )
18+ }
1319}
1420
1521intellij {
@@ -37,14 +43,6 @@ dependencies {
3743}
3844
3945tasks {
40- val jacocoTestReport = " jacocoTestReport" (JacocoReport ::class ) {
41- reports {
42- xml.required.set(true )
43- html.required.set(false )
44- }
45- shouldRunAfter(test)
46- }
47-
4846 publishPlugin {
4947 token.set(
5048 project.findProperty(" intellij.publish.token" ) as String?
@@ -70,10 +68,6 @@ tasks {
7068 }
7169 }
7270
73- check {
74- dependsOn(jacocoTestReport)
75- }
76-
7771 withType<KotlinCompile > {
7872 kotlinOptions {
7973 jvmTarget = " 17"
You can’t perform that action at this time.
0 commit comments