Jenkins : JaCoCo Plugin

Plugin Information

View JaCoCo on the plugin site for more information.

Basic information
This plugin allows you to capture code coverage report from JaCoCo. Jenkins will generate the trend report of coverage and some other statistics.

It also includes functionality to include columns in Dashboards which displays the latest overall coverage numbers and links to the coverage report.

Getting Started

The plugin provides two things, a build-publisher to record and display coverage data as part of builds as well as a new
column-type for dashboard views which can display coverage data in Dashboards.

Recording coverage for builds

Get coverage data as part of your build

First you need to get coverage calculated as part of your build/tests, see the JaCoCo documentation
for details. You need at least one or more *.exec file available after tests are executed. Usually this means adjusting
your Maven pom.xml or Ant build.xml file..

Set up coverage retrieval and publishing

In order to get the coverage data published to Jenkins, you need to add a JaCoCo publisher and configure it so it will
find all the necessary information. Use the help provided via the question-mark links for more information. Basically
you specify where the *.exec files are, where compiled code can be found and where the corresponding source code is
located after the build is finished to let the plugin gather all necessary pieces of information..

Run the job

After the job executed, the build-output will show that the JaCoCo-publisher is executed and collects the data. This
output can also give hints if something goes wrong at this stage:

Zeichne Testergebnisse auf.
[JaCoCo plugin] Collecting JaCoCo coverage data...
[JaCoCo plugin] build/*.exec;build/*-classes;src/java,src/*/java,src/*/src; locations are configured
[JaCoCo plugin] Number of found exec files: 5
[JaCoCo plugin] Saving matched execfiles:  .../build/jacoco-excelant.exec .../build/jacoco-main.exec .../build/jacoco-ooxml-lite.exec
[JaCoCo plugin] Saving matched class directories:  .../build/examples-classes .../build/excelant-classes .../build/excelant-test-classes
[JaCoCo plugin] Saving matched source directories:  .../src/contrib/src .../src/examples/src .../src/excelant/java .../src/java
[JaCoCo plugin] Loading inclusions files..
[JaCoCo plugin] inclusions: []
[JaCoCo plugin] exclusions: [**/Test*]
[JaCoCo plugin] Thresholds: JacocoHealthReportThresholds [minClass=0, maxClass=0, minMethod=0, maxMethod=0, minLine=0, maxLine=0,
minBranch=0, maxBranch=0, minInstruction=0, maxInstruction=0, minComplexity=0, maxComplexity=0]
[JaCoCo plugin] Publishing the results..
[JaCoCo plugin] Loading packages..
[JaCoCo plugin] Done.
Look at results

If data gathering is successful, the build will include a link to the coverage results similar to the HTML report of
JaCoCo itself. The job page will be enhanced with a chart with the trend of code coverage over the last builds.

Coverage column

This part of the JaCoCo plugin allows you to add a new type of column to a project-table in the Dashboard view which
will show the coverage number of the last build for ajob together with some color coding which allows to quickly see
projects with low coverage.

The fill-color in use by the column is a continuous color-range with the following points:

  • PERFECT = 100.0
  • EXCELLENT at 97.0
  • GOOD at 92.0
  • SUFFICIENT at 85.0
  • FAIR at 75.0
  • POOR at 50.0
  • TRAGIC at 25.0
  • ABYSSMAL at 0.0
  • NA = No coverage configured

Open Tickets (bugs and feature requests)

See https://issues.jenkins-ci.org/browse/JENKINS-42420?jql=project%20%3D%20JENKINS%20AND%20status%20in%20(Open%2C%20%22In%20Progress%22%2C%20Reopened%2C%20%22In%20Review%22)%20AND%20component%20%3D%20jacoco-plugin

Build Status


Troubleshooting

  • Unfortunately JaCoCo 0.7.5 breaks compatibility to previous binary formats of the jacoco.exec files. The JaCoCo plugin up to version 1.0.19 is based on JaCoCo 0.7.4, thus you cannot use this version with projects which already use JaCoCo 0.7.5 or newer. JaCoCo plugin starting with version 2.0.0 uses JaCoCo 0.7.5 and thus requires also this version to be used in your projects. Please stick to JaCoCo plugin 1.0.19 or lower if you still use JaCoCo 0.7.4 or lower

Change Log

Version 3.1-SNAPSHOT (unreleased)

  • N/A

Version 3.0.4 (November 4, 2018)

Version 3.0.3 (August 31, 2018)

  • Update JaCoCo to 0.8.2 to support Java 10 (#99)
  • Update some other plugins
  • JENKINS-43310 add source file inclusions and exclusions (#85 / JENKINS-43310)

Version 3.0.2 (February 18, 2018)

  • No change upload due to problems with the release-workflow

Version 3.0.1 (February 18, 2018)

  • No change upload due to problems with the release-workflow

Version 3.0 (February 18, 2018)

Version 2.2.1 (May 5, 2017)


  • JENKINS-43103 Removed dependency on Joda Time 
  • #83 Added symbol name for better pipeline integration
  • JENKINS-41515   Update Jenkins parent to 1.625.3 to be able to test with current pipeline-plugin
  • JENKINS-41515 Adjust dependencies and add some exclusions to remove a number of unnecessary jars from the resulting hpi file

Version 2.2.0 (Mar 22, 2017)

  • Configuration: Put checkboxes on top of threshold values in the configuration UI
  • #81 New flag to enable/disable display of source files with line coverage highlights
  • #80 Allow to fail the build if coverage degrades to much compared to previous build
  • #79/JENKINS-25076/JENKINS-29117 Report 100% for empty Coverage objects
  • #78/JENKINS-26254 Use BufferedInputStream to read .exec files
  • #76 Allow usage of environment variables in threshold fields.
  • JENKINS-38604: Limit copying of files to types *.java and *.class
  • JENKINS-36571: Update to Java 1.7
  • JENKINS-36536: Put a trend graph on the pipeline project page
  • JENKINS-32847: Add warning for sub directory filter
  • JENKINS-16787: Add shape and center plot for single-build-graphs

Version 2.1.0 (Sep 29, 2016)

  • JENKINS-16580 Display more than only line coverage in graph, #50
  • JENKINS-27120 Adding Workflow support for JaCoCo publisher, make JacocoPublisher a SimpleBuildStep, #63, #66, #70, #72, #73
  • Handle Jenkins publisher case when classes directory is empty, #67
  • JENKINS-32717 Multiple class directories and source directories not parsed if there is a space after comma delimiter, #68
  • Use full precision when comparing coverage to thresholds, #71
  • Expand the inclusion and exclusion inputs, #74

Version 2.0.1 (Jan 15, 2016)

  • Fix the m2e lifecycle-mapping, #64
  • Integrate automated builds via travis-ci and show the build-state on the github page
  • Fix for JENKINS-31751 JaCoCo 2.0.0 plugin shows html instead of coverage report chart

Version 2.0.0 (Nov 23, 2015)

  • Major version change because the jacoco.exec file from the newer JaCoCo is binary incompatible with previous builds
  • Update to JaCoCo 0.7.5, this causes binary incompatibility! See #55
  • Add coverage summary on build status/result page. Thanks to Felipe Brandão for the patch, see #61


Older changelog

Version 1.0.19 (Apr 7, 2015)

  • Update used version of JaCoCo to 0.7.4

Version 1.0.18 (Dec 7, 2014)

  • Fix JENKINS-23708 NullPointerException if older JaCoCo reports are opened

Version 1.0.17 (Nov 25, 2014)

Version 1.0.16 (Jun 24, 2014)

Version 1.0.15 (Jun 11, 2014)

Version 1.0.14 (Nov 9, 2013)

Core JaCoCo plugin

Version 1.0.13 (Aug 22, 2013)

Core JaCoCo plugin

Coverage column:

Version 1.0.12 (Feb 22, 2013)

Version 1.0.11 (Feb 21, 2013)

Version 1.0.10 (Feb 05, 2013)

Version 1.0.9 (Nov 18, 2012) 

Version 1.0.8 (Okt 15, 2012) 

Version 1.0.7 (Okt 8, 2012) 

Version 1.0.6 (Okt 2, 2012) 

Version 1.0.5 (Sep 09, 2012) 

  • Fixed JENKINS-15088: When the missed count is bigger than the covered, the redbar becomes too long

Version 1.0.4 (Sep 03, 2012) 

  • Fixed JENKINS-14896: java.io.FileNotFoundException when saving module data

Version 1.0.3 (Aug 20, 2012) 

  • New concept implemented JENKINS-14927: Use the EXEC files instead the XMLs
  • Fixed JENKINS-14279: Report "missed items" rather that coverage percentage
  • Fixed JENKINS-14159: 404 when trying to see coverage on java code (implementation of sourcefile highlighting)
  • New feature JENKINS-14274: Multi module reporting

Version 1.0.2 (Jul 01, 2012) 

  • Fixed JENKINS-14270: The report does not show the covered/all, it shows something different

Version 1.0.1 (Jun 25, 2012) 

  • Fixed testcases to have all the tests passed for a release
  • Fixed JENKINS-14203: The total summary is double counted

Version 1.0.0 (Jun 14, 2012) 

  • Fixed 3 testcases to have all the tests passed for a release
  • Fixed POM: making it releasabl

Attachments:

screenshot_039.png (image/png)
screenshot_041.png (image/png)
screenshot_042.png (image/png)
screenshot_043.png (image/png)
jrnkins-graph.png (image/png)