diff --git a/build.gradle b/build.gradle index ab6c5a1..d60926e 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,7 @@ version '3.5.0' apply plugin: 'java' apply plugin: 'maven' apply plugin: 'signing' +apply plugin: 'jacoco' sourceCompatibility = 1.8 @@ -27,6 +28,15 @@ dependencies { testCompile group: 'io.vertx', name: 'vertx-unit', version: '3.5.0' } +jacocoTestReport { + reports { + xml.enabled true + html.enabled false + } +} + +check.dependsOn jacocoTestReport + uploadArchives { repositories { mavenDeployer {