Monthly Archives: June 2023

Jenkins – What & How to build Jenkins pipeline?

In Jenkins, a pipeline is a workflow with a group of events or jobs that are linked to each other in a sequence. The Jenkins pipeline is a process of continuous delivery automation using Jenkins jobs (items). In the Jenkins pipeline, each job contains some processing inlets and outlets. For example, Build->Deploy->Test->Release are the different… Read More »

How to package Spring Boot application to JAR

JAR stands for Java ARchive. The jar file represents a group of .class files. It is a file format that is based on the ZIP format. It is used to archive .class files, audio files, image files, and directories into a single jar file, which is further used to distribute the application or libraries over… Read More »