Hi,
we use gradle jacoco plugin (with the actual version of jacoco "0.7.6.201602180812").
We want to exclude classes from the analysis and use the JaCoCo Task extension, but it dosn't work. The command line params include the param "excludes", but it dosn't exclude the classes from analysis.
What's wrong with our configuration?
the resulting command line output:
.....append=true,excludes=*Controller:Application:UrlMappings,.....
build.gradle
test {
jacoco {
excludes = ['*Controller',
'Application',
'UrlMappings']
}
}