blob: 92f34e4c6b9f6e782bff55861a111e4ce0fce481 (
plain)
1
2
3
4
5
6
7
8
9
10
|
plugins { kotlin("jvm") }
dependencies {
compileOnly(libs.detekt.api)
testImplementation(libs.detekt.test)
testImplementation(libs.junit.jupiter.engine)
testRuntimeOnly(libs.junit.platform.launcher)
}
tasks.withType<Test> { useJUnitPlatform() }
|