diff --git a/build.gradle b/build.gradle index a07bbcb7..ea836c72 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,6 @@ plugins { id 'java-library' + id 'jacoco' } tasks.withType(JavaCompile) { @@ -98,6 +99,12 @@ test { useJUnit() } +jacocoTestReport { + reports { + xml.enabled true + } +} + publishing { Properties props = new Properties() if(file("$buildDir/credentials.properties").exists()) {