Rather than with packages grouped under each other, like this:
A few hours of googling around, looking at the Jacoco site, searching the discussions here and on GitHub haven't seemed to return a reference to this particular problem. Does anyone have any thoughts or suggestions?
Here's my configuration for Jacoco in Gradle, which is what's orchestrating the execution of a Jacoco ant task in the background, generating the .exec file.
jacoco {
toolVersion = "0.7.6.201602180812"
}
jacocoTestReport{
//Test targeting configured here
classDirectories = files(sourceSets.main.allJava.srcDirs)
reports {
csv.enabled false
xml.destination "${buildDir}/reports/jacoco/xml"
html.destination "${buildDir}/reports/jacoco/html"
}
executionData = files('build/jacoco/test.exec')
doLast {
//Prints a clickable link in the terminal, if your terminal emulator supports that
println "*** JaCoCo Report: file://${buildDir}/reports/jacoco/html/index.html ***"
}
}--
You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/ac248218-a25a-4a94-b5b8-9d4c710486a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/c3bbbf7d-1c8f-42a4-8a9d-34adb4c87392%40googlegroups.com.