GiraffaFS / giraffa

Giraffa FileSystem (Slack: giraffa-fs.slack.com)
https://giraffa.ci.cloudbees.com
Apache License 2.0
17 stars 6 forks source link

Replace Clover with JaCoCo for code coverage #215

Closed pjeli closed 8 years ago

pjeli commented 8 years ago

Clover requires a license to use and is complicated to set-up.

JaCoCo is free and very simple to set-up now that we've gradle-ized.

We should make the switch!

pjeli commented 8 years ago

All we need to do to support JaCoCo is add it as a gradle plugin to giraffa-core; literally a one-line change.

Then we just run the following commands: ./gradlew clean test jacocoTestReport

And in giraffa-core/build/reports/ there will be a new jacoco directory which will have an HTML generated report.

milandesai commented 8 years ago

+1

pjeli commented 8 years ago

Thanks @milandesai.

Committed as: 2a38df17013132352d042270f3cc67a160281dda.