Skip to content

Instantly share code, notes, and snippets.

@adavis
Created July 12, 2015 18:44
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 adavis/459f26b3bde40e3bff3e to your computer and use it in GitHub Desktop.
Save adavis/459f26b3bde40e3bff3e to your computer and use it in GitHub Desktop.
Cobertura Coverage for Spring Boot App
plugins {
id 'net.saliman.cobertura' version '2.2.7'
}
cobertura {
coverageFormats = ['html', 'xml']
coverageIgnoreTrivial = true
coverageIgnores = []
coverageReportDir = new File("$buildDir/reports/cobertura")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment