bld Extension to Generate Code Coverage Reports with JaCoCo https://github.com/rife2/bld-jacoco-report
Find a file
2024-06-22 20:25:01 -07:00
.github/workflows Bumped worflows actions to latest versions 2024-04-02 13:41:24 -07:00
.idea Converted List to Collection whenever applicable 2024-06-22 20:25:01 -07:00
.vscode Bumped bld to version 1.9.1 2024-05-09 21:15:40 -07:00
config Bumped PMD extension to version 0.9.8 2024-04-02 13:44:11 -07:00
examples Bumped dependencies 2024-06-22 20:21:50 -07:00
lib/bld Bumped dependencies 2024-06-22 20:21:50 -07:00
src Converted List to Collection whenever applicable 2024-06-22 20:25:01 -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 1.9.1 2024-05-09 21:15:40 -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 IOException {
    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