bld Extension to Generate Code Coverage Reports with JaCoCo https://github.com/rife2/bld-jacoco-report
Find a file
2024-04-02 13:44:11 -07:00
.github/workflows Bumped worflows actions to latest versions 2024-04-02 13:41:24 -07:00
.idea Bumped JUnit versions 2024-02-26 10:39:56 -08:00
.vscode Bumped JUnit versions 2024-02-26 10:39:56 -08:00
config Bumped PMD extension to version 0.9.8 2024-04-02 13:44:11 -07:00
examples Added JDK 22 to CI 2024-03-21 13:58:26 -07:00
lib/bld Bumped PMD extension to version 0.9.8 2024-04-02 13:44:11 -07:00
src Bumped JUnit versions 2024-02-26 10:39:56 -08: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 JUnit versions 2024-02-26 10:39:56 -08: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