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 }