Skip to content

Commit 8fafd90

Browse files
committed
cleanup
1 parent 66cf8ca commit 8fafd90

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

build.gradle.kts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ import java.nio.file.Files
66
plugins {
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

1415
repositories {
@@ -21,7 +22,6 @@ repositories {
2122
}
2223

2324
val lsp4ijVersion = property("lsp4ijVersion") as String
24-
val jUnit5Version = property("jUnit5Version") as String
2525
val mockkVersion = property("mockkVersion") as String
2626

2727
dependencies {
@@ -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

4340
intellijPlatform {
@@ -141,6 +138,8 @@ tasks {
141138
junitXml.required = true
142139
html.required = false
143140
}
141+
142+
finalizedBy(koverBinaryReport, koverHtmlReport)
144143
}
145144

146145
clean {

0 commit comments

Comments
 (0)