diff --git a/build.gradle b/build.gradle index bc0e549..b6f9925 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,6 @@ plugins { id 'java' + id 'jacoco' } def publishScript = file(rootProject.getProjectDir().getPath() + '/publish.gradle') @@ -76,4 +77,12 @@ dependencies { test { useJUnitPlatform() -} \ No newline at end of file +} + +jacoco { + toolVersion = '0.8.5' +} + +jacocoTestReport { + dependsOn test +}