bld Extension to Generate Code Coverage Reports with JaCoCo https://github.com/rife2/bld-jacoco-report
Find a file
2024-07-28 22:34:15 -07:00
.github/workflows Bumped bld to version 2.0.0-SNAPSHOT 2024-07-22 17:47:06 -07:00
.idea Bumped bld to version 2.0.1 2024-07-28 22:29:39 -07:00
.vscode Bumped bld to version 2.0.1 2024-07-28 22:29:39 -07:00
config Bumped PMD extension to version 0.9.8 2024-04-02 13:44:11 -07:00
examples Version 0.9.7 2024-07-28 22:34:15 -07:00
lib/bld Bumped bld to version 2.0.1 2024-07-28 22:29:39 -07:00
scripts Added CLI parameters checks and script 2024-07-25 13:05:43 -07:00
src Version 0.9.7 2024-07-28 22:34:15 -07:00
.gitignore Initial commit 2023-04-30 14:27:22 -07:00
bld Initial commit 2023-04-30 14:27:22 -07:00
bld.bat Initial commit 2023-04-30 14:27:22 -07:00
LICENSE.txt Initial commit 2023-04-30 14:27:22 -07:00
README.md Bumped bld to version 2.0.1 2024-07-28 22:29:39 -07:00
update-test-resources.sh Minor cleanup 2023-08-12 14:44:31 -07:00

bld Extension to Generate Code Coverage Reports with JaCoCo

License Java bld Release Snapshot GitHub CI

To install, please refer to the extensions documentation.

To run the tests and generate the code coverage reports, add the floowing to your build file:

@BuildCommand(summary = "Generates Jacoco Reports")
public void jacoco() throws Exception {
    new JacocoReportOperation()
            .fromProject(this)
            .execute();
}
./bld compile jacoco
  • View Examples

  • The HTML, CSV and XML reports will be automatically created in the build/reports/jacoco/test directory.

  • The execution coverage data will be automatically recorded in the build/jacoco/jacoco.exec file.

Please check the JacocoReportOperation documentation for all available configuration options.

SonarQube/SonarCloud

To use a JaCoCo report with sonar, add something like the following to your sonar-project.properties:

sonar.organization=YOUR_ORGANIZATION
sonar.projectKey=YOUR_PROJECT_KEY
sonar.coverage.jacoco.xmlReportPaths=build/reports/jacoco/test/jacocoTestReport.xml
sonar.sources=src/main/java/
sonar.tests=src/test/java/
sonar.java.binaries=build/main,build/test
sonar.java.libraries=lib/compile/*.jar