File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ import java.nio.file.Files
66plugins {
77 id(" java" )
88 id(" org.jetbrains.kotlin.jvm" ) version " 2.1.21"
9- id(" org.jetbrains.intellij.platform" ) version " 2.5 .0"
9+ id(" org.jetbrains.intellij.platform" ) version " 2.6 .0"
1010 id(" org.jlleitschuh.gradle.ktlint" ) version " 12.2.0"
1111 id(" org.jetbrains.changelog" ) version " 2.2.1"
12+ id(" org.jetbrains.kotlinx.kover" ) version " 0.9.1"
1213}
1314
1415repositories {
@@ -21,7 +22,6 @@ repositories {
2122}
2223
2324val lsp4ijVersion = property(" lsp4ijVersion" ) as String
24- val jUnit5Version = property(" jUnit5Version" ) as String
2525val mockkVersion = property(" mockkVersion" ) as String
2626
2727dependencies {
@@ -33,11 +33,8 @@ dependencies {
3333
3434 implementation(files(layout.buildDirectory.dir(" lsp" )))
3535
36- testImplementation(" org.junit.jupiter:junit-jupiter-api:$jUnit5Version " )
37- testImplementation(" org.junit.platform:junit-platform-launcher:1.12.2" )
36+ testImplementation(kotlin(" test" ))
3837 testImplementation(" io.mockk:mockk:$mockkVersion " )
39-
40- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:$jUnit5Version " )
4138}
4239
4340intellijPlatform {
@@ -141,6 +138,8 @@ tasks {
141138 junitXml.required = true
142139 html.required = false
143140 }
141+
142+ finalizedBy(koverBinaryReport, koverHtmlReport)
144143 }
145144
146145 clean {
You can’t perform that action at this time.
0 commit comments