By exec filtering I mean that those classes should not be included in the report at all.
I am currently using jacoco-report-aggregate goal to create aggregated report, I am also doing inclusions and exclusions in this goal itself.
however I also want to add a check on the aggregated report (on line coverage), but when I am putting check, it is checking on the entire classes(exclusions are not being considered while check goal). This results in drop in the line coverage percentage.
Summing up, report-aggregate is creating a report with proper exclusions, but check is checking on the entire project ignoring the exclusions hence resulting in wrong checking (as per my requirement).
Please help me out on this issue.