Skip to content

Commit 7fce6f2

Browse files
committed
Fixed gradle.
1 parent 4c7d07d commit 7fce6f2

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,18 @@ tasks.withType<JavaCompile>() {
3333
options.encoding = "UTF-8"
3434
}
3535

36-
tasks.jacocoTestReport {
36+
tasks {
37+
jacocoTestReport {
3738
reports {
38-
xml.isEnabled = true
39+
xml.required.set(true)
40+
html.required.set(false)
3941
}
42+
}
4043
}
4144

4245
sonarqube {
4346
properties {
47+
property("sonar.inclusions", "*.java,*.kt")
4448
property("sonar.java.binaries", "$projectDir/build/classes/kotlin")
4549
}
46-
}
50+
}

0 commit comments

Comments
 (0)