Evaldas Visockashashnode.programmersdiary.com·Nov 1, 2024Catching up with tests in Programmers' diary projectHi. This is the twenty-first part of the diary about developing the “Programmers’ diary” blog. Previous part: https://hashnode.programmersdiary.com/security-library-and-redis-in-blogging-microservices. The open source code of this project is on https...Springboot
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Oct 16, 2024Building a CI Pipeline for PetClinic Application Project: Step-by-Step InstructionsWhy Test the Docker Image in the Feature Branch Pipeline? Catch Issues Early: If there are bugs in the Docker image or environment setup, it’s much better to catch them at the feature branch level. This way, you don’t introduce broken code into the...Kubernetes Basics: A Beginner’s Guideci-cd
mrtechmakermrtechmaker.hashnode.dev·Sep 19, 2024How to add sonar.coverage.jacoco.xmlReportPaths in jenkins for android project ?I was trying to configure jacoco plugin with sonarqube. To do this, we need to provide sonarqube with the path of coverage report xml file generated by the jacoco plugin.we can do this on local environment by adding a sonarqube property as shown be...sonarqube
Noel KAMPHOAkloudly.hashnode.dev·Dec 24, 20235 Steps to Integrate Maven with SonarQube for Effective Quality AssuranceOverview It has been statistically proven that, as software developers, we spend 80% of our time reading code and only 20% of our time writing it. So it's important that during that 20% of our time, we write code that will make our lives easier duri...33 readsCore Java TutorialsJava
Noel KAMPHOAkloudly.hashnode.dev·Nov 24, 2023How to generate Code Coverage Report using Jacoco in a Java application1. Overview In this quick tutorial, we are going to see how to generate a code coverage report for a maven project using JaCoCo. JaCoCo is a free Java code coverage library distributed under the Eclipse Public License. 2. Version check This tutorial ...202 readsCore Java TutorialsJava
Virendra Oswalvirendraoswal.com·Oct 10, 2023Maximizing Code Quality: A Guide to Achieving Code Coverage with JaCoCo in Spring Boot ApplicationsCode coverage is an important metric in software development because it helps you understand how thoroughly your code has been tested be in a Unit or Integrated test in your environments. There are a lot of code coverage tools available, but today we...675 readsBits and Piecesjacoco