2021-12-28 16:50:34 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2021-12-29 14:51:53 +00:00
|
|
|
id 'jacoco'
|
2021-12-28 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation(platform('org.junit:junit-bom:5.8.2'))
|
|
|
|
testImplementation('org.junit.jupiter:junit-jupiter')
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2021-12-29 14:51:53 +00:00
|
|
|
finalizedBy jacocoTestReport
|
|
|
|
}
|
|
|
|
|
|
|
|
jacocoTestReport {
|
|
|
|
dependsOn test
|
2021-12-28 16:50:34 +00:00
|
|
|
}
|