46 lines
807 B
Kotlin
46 lines
807 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.0"
|
|
jacoco
|
|
application
|
|
id("io.gitlab.arturbosch.detekt") version "1.23.5"
|
|
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
|
|
}
|
|
|
|
application {
|
|
mainClass.set("MainKt")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
finalizedBy(tasks.jacocoTestReport)
|
|
}
|
|
|
|
tasks.jacocoTestReport {
|
|
dependsOn(tasks.test)
|
|
reports {
|
|
xml.required.set(true)
|
|
html.required.set(true)
|
|
}
|
|
}
|
|
|
|
detekt {
|
|
config.setFrom(files("detekt.yml"))
|
|
buildUponDefaultConfig = true
|
|
}
|
|
|
|
ktlint {
|
|
verbose.set(true)
|
|
filter {
|
|
exclude("**/build/**")
|
|
include("**/kotlin/**")
|
|
}
|
|
}
|