diff --git a/framework/build.gradle b/framework/build.gradle index 4519f93e44d..da42bf23c10 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -145,6 +145,12 @@ test { } } +if (!hasProperty("isJacocoEnable")) { + tasks.withType(Test) { + jacoco.excludes = ['**'] + } +} + /* jacocoTestReport { reports { diff --git a/plugins/build.gradle b/plugins/build.gradle index b85a435dc30..7028686f3d0 100644 --- a/plugins/build.gradle +++ b/plugins/build.gradle @@ -6,7 +6,7 @@ apply plugin: 'application' apply plugin: 'checkstyle' jacoco { - toolVersion = "0.8.4" + toolVersion = "0.8.8" } def versions = [ checkstyle: '8.7',