We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c7d07d commit 7fce6f2Copy full SHA for 7fce6f2
build.gradle.kts
@@ -33,14 +33,18 @@ tasks.withType<JavaCompile>() {
33
options.encoding = "UTF-8"
34
}
35
36
-tasks.jacocoTestReport {
+tasks {
37
+ jacocoTestReport {
38
reports {
- xml.isEnabled = true
39
+ xml.required.set(true)
40
+ html.required.set(false)
41
42
+ }
43
44
45
sonarqube {
46
properties {
47
+ property("sonar.inclusions", "*.java,*.kt")
48
property("sonar.java.binaries", "$projectDir/build/classes/kotlin")
49
-}
50
+}
0 commit comments