22 lines
302 B
Groovy
22 lines
302 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'jacoco'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform('org.junit:junit-bom:5.8.2'))
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
finalizedBy jacocoTestReport
|
|
}
|
|
|
|
jacocoTestReport {
|
|
dependsOn test
|
|
} |