Skip to content

Instantly share code, notes, and snippets.

@nathan815
Created January 10, 2020 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathan815/69390c2d6f340f5adeecd003b302178f to your computer and use it in GitHub Desktop.
Save nathan815/69390c2d6f340f5adeecd003b302178f to your computer and use it in GitHub Desktop.
Exclude paths in jacoco
jacocoTestReport {
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
"**/src/main/java/**",
"other/path/to/exclude"
])
}))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment