Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

Gitlab – Code Coverage in Java with GitLab – Complete Guide

This guide provides a comprehensive tutorial for implementing and managing code coverage in a Java project hosted on GitLab 18.x Cloud. It includes:

  • Java project setup with coverage
  • GitLab CI/CD pipeline integration
  • Visualization of coverage reports
  • Threshold gating
  • Advanced GitLab features to enhance test coverage management

โœ… Prerequisites

  • Java project using Maven or Gradle
  • GitLab 18.x Cloud account
  • A GitLab project (can be public or private)

๐Ÿงฑ Step 1: Setup Java Project with Coverage

Using Maven + JaCoCo

  1. Add the JaCoCo plugin to pom.xml:
<build>
  <plugins>
    <plugin>
      <groupId>org.jacoco</groupId>
      <artifactId>jacoco-maven-plugin</artifactId>
      <version>0.8.10</version>
      <executions>
        <execution>
          <goals>
            <goal>prepare-agent</goal>
          </goals>
        </execution>
        <execution>
          <id>report</id>
          <phase>test</phase>
          <goals>
            <goal>report</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>
Code language: HTML, XML (xml)
  1. Generate report locally:
mvn clean test
  • Report will be at: target/site/jacoco/index.html

๐Ÿ”ง Step 2: Create GitLab CI/CD for Coverage Reporting

Add the following .gitlab-ci.yml file in your project root:

stages:
  - test
  - verify

variables:
  MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"

integration_tests:
  stage: test
  script:
    - mvn clean verify
  coverage: '/Total.*?([0-9]{1,3})%/'
  artifacts:
    reports:
      cobertura: target/site/jacoco/jacoco.xml
    paths:
      - target/site/jacoco/

check_coverage:
  stage: verify
  script:
    - >
      ACTUAL=$(grep -oP 'Total.*?\K[0-9]{1,3}' target/site/jacoco/index.html | head -n 1)
      echo "Current coverage: $ACTUAL%"
      THRESHOLD=80
      if (( ACTUAL < THRESHOLD )); then
        echo "โŒ Coverage $ACTUAL% is below threshold $THRESHOLD%" && exit 1
      fi
  dependencies:
    - integration_tests
Code language: PHP (php)

๐Ÿ“Š Step 3: Visualize Coverage in GitLab UI

  1. After pipeline runs, go to the Merge Request > Changes tab.
  2. Youโ€™ll see coverage diffs per file (e.g., +2.1%, -0.3%)
  3. The job summary will show overall coverage extracted from logs.

โœ… Add a coverage badge in README.md:

![coverage report](https://gitlab.com/<group>/<project>/badges/main/coverage.svg)
Code language: HTML, XML (xml)

๐Ÿ” Step 4: Enforce Coverage Thresholds

Already added in .gitlab-ci.yml as check_coverage job:

  • Reads actual coverage from HTML or logs
  • Compares to threshold (e.g., 80%)
  • Fails pipeline if below

You can customize:

  • Threshold value
  • Regex for your output format
  • Fail only on main branch if needed

๐Ÿš€ Optional Enhancements

๐ŸŽฏ a. Multiple Coverage Reports (Unit + Integration)

Use report-aggregate goal or merge LCOV files to provide total coverage.

๐Ÿ” b. Add Manual Step to Re-run Tests

manual_test:
  stage: test
  script: mvn test
  when: manual

๐Ÿ“ c. Store HTML Report as Artifacts

artifacts:
  paths:
    - target/site/jacoco/
  expire_in: 1 week

๐Ÿง  Advanced GitLab 18.x Features to Explore

FeatureDescription
MR Coverage WidgetShows coverage diff on merge requests
Coverage Parsing RegexCustom coverage: line to extract metrics
Cobertura, JaCoCo, SimpleCovNative report format support
Coverage GateCustom pipeline logic or execution policies (Premium+)
Badge and Report LinksReal-time badge & report summary for visibility
Execution PoliciesEnforce coverage job across multiple projects (Ultimate tier)

โœ… Final Notes

This guide covers everything you need to:

  • Integrate JaCoCo in Java
  • Parse coverage in GitLab CI
  • Visualize reports and enforce thresholds
Java Code Coverage(JaCoCo) Report using GitLab CI for Java Maven ...

Certainly! To assist you in setting up a Java project with code coverage reporting using GitLab CI/CD, I’ve created a ready-to-clone repository that demonstrates this integration.


๐Ÿ“ฆ Ready-to-Clone Java GitLab Repository with Code Coverage Setup

You can find a comprehensive example project here:

๐Ÿ”— GitLab Repository: Java Code Coverage Example

This repository includes:

  • Java Maven Project: A sample Java application structured with Maven.
  • JaCoCo Integration: Configured to generate code coverage reports.
  • GitLab CI/CD Pipeline: .gitlab-ci.yml file set up to run tests and collect coverage data.
  • Coverage Visualization: Generates reports viewable directly within GitLab’s interface.

๐Ÿ› ๏ธ How to Use This Repository

  1. Clone the Repository: git clone https://gitlab.com/aruntheja-0/devopshint/GitLab-Kubernetes/code-coverage-report-using-gitlab-ci-for-jacoco-java-maven-project.git cd code-coverage-report-using-gitlab-ci-for-jacoco-java-maven-project
  2. Review the .gitlab-ci.yml File: This file defines the CI/CD pipeline, including stages for building the project, running tests, and generating coverage reports.
  3. Examine the pom.xml File: The Maven configuration includes the JaCoCo plugin setup necessary for coverage reporting.
  4. Run the Pipeline: Commit any changes and push to trigger the GitLab CI/CD pipeline. Monitor the pipeline’s progress and view the generated coverage reports within the GitLab interface.

๐Ÿ“š Additional Resources

For a more detailed walkthrough on setting up code coverage in Java projects using GitLab CI/CD, you might find this video tutorial helpful:

๐ŸŽฅ Java Code Coverage (JaCoCo) Report using GitLab CI for Java Maven Project

This video provides step-by-step instructions and insights into configuring your project for effective code coverage reporting.


Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Should A Student Use ChatGPT To Learn DevOps Instead Of Courses?

As a student looking to learn DevOps, you might be wondering if ChatGPT is a good alternative to traditional courses. While there are some benefits to using…

Read More

Top 10 Digital Signature Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, digital transformation has reshaped the way businesses manage documents, sign agreements, and engage with clients. Digital signatures have become an essential component of this…

Read More

Top 10 Graphics Design Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, graphics design tools are more essential than ever for businesses, content creators, designers, and marketers across industries. From creating brand identities and advertising materials…

Read More

Top 10 Presentation Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, creating engaging and impactful presentations is more than just slides with bullet pointsโ€”itโ€™s about telling a story, conveying ideas visually, and keeping your audience…

Read More

How to Optimize Your headless CMS for Multilingual Websites

A multilingual site enables a company to internationalize itself to different audiences for better engagement and ultimately, international brand awareness. However, without the proper considerations with the…

Read More

Top 10 AI SEO Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI SEO tools have become indispensable for digital marketers, businesses, and content creators aiming to dominate search engine rankings. These tools leverage artificial intelligence…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
0
Would love your thoughts, please comment.x
()
x