I'm currently using the Gradle plugin to run JaCoCo for code coverage repots. I wanted to specify in my build.gradle some filtering options; https://github.com/jacoco/jacoco/wiki/FilteringOptions
I can see that this is possible from the Maven plugin; e.g. https://github.com/timezra/jacoco-scala-maven-plugin
From the Gradle doco here there appears no clear way on how to do this.
How can I set filtering options for JaCoCo when running as part of a build.gradle
script?
Gradle
solution still? – Jared Burrows