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 4fa44fb commit e21eeb8Copy full SHA for e21eeb8
1 file changed
build.gradle
@@ -81,7 +81,7 @@ checkstyle {
81
}
82
83
jacoco {
84
- toolVersion "0.8.8"
+ toolVersion "0.8.11"
85
86
87
jacocoTestReport {
@@ -155,6 +155,12 @@ prepareTestingSandbox.dependsOn( libs )
155
prepareSandbox.dependsOn( libs )
156
157
test {
158
+ // Idea SDK needs special configuration
159
+ // see https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#jacoco-reports-0-coverage
160
+ jacoco {
161
+ includeNoLocationClasses = true
162
+ excludes = ["jdk.internal.*"]
163
+ }
164
useJUnitPlatform()
165
testLogging {
166
exceptionFormat = 'full'
0 commit comments