47 lines
1009 B
Plaintext
47 lines
1009 B
Plaintext
plugins {
|
|
java
|
|
jacoco
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
|
|
|
|
dependencies {
|
|
constraints {
|
|
}
|
|
|
|
implementation(libs.findLibrary("jacoco-core").get())
|
|
|
|
compileOnly(libs.findLibrary("lombok").get())
|
|
annotationProcessor(libs.findLibrary("lombok").get())
|
|
testCompileOnly(libs.findLibrary("lombok").get())
|
|
testAnnotationProcessor(libs.findLibrary("lombok").get())
|
|
|
|
testImplementation(libs.findLibrary("junit-jupiter").get())
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
|
|
implementation(libs.findLibrary("slf4j-api").get())
|
|
implementation(libs.findLibrary("slf4j-simple").get())
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
tasks.named<Test>("test") {
|
|
useJUnitPlatform()
|
|
finalizedBy("jacocoTestReport")
|
|
}
|
|
|
|
tasks.withType<JacocoReport> {
|
|
reports {
|
|
xml.required.set(true)
|
|
html.required.set(true)
|
|
}
|
|
}
|