I can't get Jacoco excludes to work #537
Unanswered
xenomachina
asked this question in
Q&A
Replies: 1 comment
-
It looks like people have also reported a similar problem with the jacoco-report-aggregation |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My root project's
build.gradle.kts
contains:When I run
aggregateJacocoReport
, an aggregate HTML report is produced atbuild/reports/jacoco/aggregate/html/index.html
This report always contains all of the classes from the subprojects, no matter what I put in
excludes
. It behaves exactly as if I hadn't specified any excludes. I've even tried excluding"**"
, and still doesn't seem to exclude anything from the aggregate report.Does
excludes
work for anyone else?Is there any way I can debug this to figure out where the excludes are getting "dropped"?
I'm using Gradle 8.5 on 21.0.2 JVM.
Beta Was this translation helpful? Give feedback.
All reactions