Skip to main content

Maven Build lifecycle

Maven follows a predefined and well-defined build lifecycle that consists of a series of phases and goals. Each phase represents a specific step in the build process, and within each phase, one or more goals are executed. The build lifecycle ensures that project compilation, testing, packaging, and deployment tasks are carried out in a consistent and standardized manner. The three main build lifecycles in Maven are:


Default Build Lifecycle:

The default build lifecycle is the most commonly used and consists of the following phases:

  1. validate: Validates the project's structure and configuration.
  2. compile: Compiles the source code of the project.
  3. test: Executes unit tests using a suitable unit testing framework (e.g., JUnit).
  4. package: Packages the compiled code into a distributable format, such as a JAR or WAR.
  5. verify: Runs any checks on the results of integration tests to ensure the quality of the build.
  6. install: Installs the packaged artifact into the local repository for use as a dependency in other projects.
  7. deploy: Deploys the final artifact to a remote repository for sharing with other developers or projects.


Clean Build Lifecycle:

The clean build lifecycle is responsible for cleaning up artifacts created during the build process. It consists of the following phases:

  1. pre-clean: Executes any necessary tasks before the project is cleaned.
  2. clean: Deletes all files generated by the previous build.
  3. post-clean: Executes any necessary tasks after the project is cleaned.


Site Build Lifecycle:

The site build lifecycle is used to generate a project's site documentation. It consists of the following phases:

  1. pre-site: Executes any necessary tasks before generating the site documentation.
  2. site: Generates the site documentation for the project.
  3. post-site: Executes any necessary tasks after generating the site documentation.
  4. site-deploy: Deploys the generated site documentation to a remote repository or server.

To execute a specific phase of a build lifecycle, you use the mvn command followed by the phase name. For example, to compile the project, you run mvn compile, and to package the project, you run mvn package. By running one phase, all preceding phases in the lifecycle will be executed automatically.


Maven plugins are used to implement the goals associated with each phase. Maven's build lifecycle and plugin architecture make it easy to build and manage complex projects with consistent and repeatable build processes. Developers can customize the build process by configuring plugins, but the default lifecycle is usually sufficient for most projects.

Comments

Popular posts from this blog

Maven Create and Build Artifacts

In Maven, you can create and build artifacts using the package phase of the build lifecycle. The package phase is responsible for taking the compiled code and other project resources and packaging them into a distributable format, such as a JAR (Java Archive), WAR (Web Application Archive), or other custom formats. Here are the steps to create and build artifacts using Maven: Configure the Build Output: In your project's pom.xml file, you need to configure the output of the build. This includes specifying the type of artifact you want to create (e.g., JAR, WAR) and any additional resources to include. You do this in the <build> section of your pom.xml: <build>     <finalName>my-artifact</finalName> <!-- Name of the artifact without the extension -->     <plugins>         <!-- Plugin configurations for creating the artifact -->         <!-- For example, maven-jar-plugin or maven-war-plugin -->     </plugins> </build> Depend

Experiment No. 5 Title: Applying CI/CD Principles to Web Development Using Jenkins, Git, and Local HTTP Server

  Experiment No. 5 Title: Applying CI/CD Principles to Web Development Using Jenkins, Git, and Local HTTP Server  Objective: The objective of this experiment is to set up a CI/CD pipeline for a web development project using Jenkins, Git, and webhooks, without the need for a Jenkinsfile. You will learn how to automatically build and deploy a web application to a local HTTP server whenever changes are pushed to the Git repository, using Jenkins' "Execute Shell" build step. Introduction: Continuous Integration and Continuous Deployment (CI/CD) is a critical practice in modern software development, allowing teams to automate the building, testing, and deployment of applications. This process ensures that software updates are consistently and reliably delivered to end-users, leading to improved development efficiency and product quality. In this context, this introduction sets the stage for an exploration of how to apply CI/CD principles specifically to web development using J

Maven Repositories (local, central, global)

Maven relies on repositories to manage dependencies, plugins, and other artifacts required for a project. There are typically three types of repositories in Maven: local, central, and remote/global repositories. Local Repository: Location: The local repository is located on your local development machine. By default, it's in the .m2 directory within your user home directory (e.g., C:\Users\<username>\.m2\repository on Windows or /Users/<username>/.m2/repository on macOS and Linux). Purpose: The local repository is used to store artifacts (JARs, POMs, and other files) that your machine has downloaded or built during previous Maven builds. These artifacts are specific to your local development environment. Benefits: Using a local repository improves build performance since it caches dependencies locally, reducing the need to download them repeatedly. It also ensures reproducibility by maintaining a local copy of dependencies. Central Repository: Location: The central repo