I want to exclude some classes from JaCoCo, but exclude doest seems to work.
For example, I want to exclude all Java classes that end with Dao (e.g. com.company.EmplyeeDao).
I tried the following code, but it still appears when I click it on sonar / using JacocoTestReport.
test { jacoco { append = true destinationFile = file("$buildDir/jacoco/jacocoTest.exec") classDumpFile = file("$buildDir/jacoco/classpathdumps") excludes = ['*Dao'] } }
I use this in conjunction with Android. What's happening?
android gradle jacoco
user1226868 May 20 '14 at 9:32 a.m. 2014-05-20 09:32
source share