From 5f29e7fbfc5d643b96cef7bef6025315c709c1ae Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Fri, 21 Sep 2018 09:32:57 +0200 Subject: [PATCH] Fix JaCoCo inclusions --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 5aef29f0e14..d502a35dd5e 100644 --- a/build.gradle +++ b/build.gradle @@ -273,7 +273,7 @@ subprojects { jacoco { append = false enabled = project.hasProperty('jacocoEnabled') - includes = ['com.sonarsource.*', 'org.sonar.*', 'org.sonarsource.*'] + includes = ['com.sonar.*', 'com.sonarsource.*', 'org.sonar.*', 'org.sonarqube.*', 'org.sonarsource.*', 'io.sonarcloud.*'] } if (project.hasProperty('maxParallelTests')) { // WARNING this is not compatible with jacocoEnabled -- 2.39.5