SlideShare ist ein Scribd-Unternehmen logo
1 von 14
Downloaden Sie, um offline zu lesen
Maven Nutshell
   The Main Concepts



     Valerio Capozio   1 of 14
Apache Maven
  Maven is a build automation tool, developed and managed from Apache Software
Foundation.
  Maven serves a similar purpose of Apache Ant tool, but it offers an unparalleled software
lifecycle management, providing a cohesive suite of verification, compilation, testing, packaging,
reporting, and deployment plugins.
  Maven uses a convention over configuration approach to builds.
  Maven is typically used in Java projects, but it can be used also to manage projects in C#,
Scala, Ruby and more other languages.




                                         Valerio Capozio                             2 of 14
Project Object Model
  Maven revolves around a metadata file, named
pom.xml
  A file with this name has to exist in the root of
every Maven project.
  In this file are defined the plugins to use, paths           The snippet above shows the minimum information
                                                               needed to define uniquely a Maven project through a
and settings to override the Maven defaults of                 Pom.

your project.                                                  A Maven project produces an element, such as JAR, WAR,
                                                               EAR, etc uniquely identified by a vector of fields (groupId,
  Each POM inherits automatically from a Super                 artifactId, packaging, version).

POM, a virtual POM embedded in the Maven core.                 A syntax to refer a specific Maven artifact is a string of
                                                               vector elements, colon separated:
  Maven supports natively multi-module projects.                     groupId:artifactId:packaging:version


                http://maven.apache.org/guides/introduction/introduction-to-the-pom.html




                                             Valerio Capozio                                              3 of 14
Execution Hierarchy
  Maven splits execution into four nested hierarchies.
From most-generic to most-specific they are:
         Lifecycle
         Phase
         Plugin
         Goal
  Lifecycle represents a well-recognized flow of steps.
  Phase is a step of lifecycle. Zero or more plugin goals
are bound to a phase.
  Plugin is a logical grouping and distribution of related
goals.
  Goal is a single executable task within a plugin.




                                            Valerio Capozio   4 of 14
Built-in Maven Lifecycle
  Maven has three built-in lifecycles:
         Clean
         Default
         Site
  Many of the phases within these three lifecycles are bound to a sensible plugin goal.
  Clean lifecycle deletes all generated artifacts from the output directory.
  Default lifecycle defines the commonly used phases to build an artifact, from its compilation
to its installation on remote repository.
  Site lifecycle generates a project information web site and is able to deploy the artifacts to a
specified web server or local path.


              http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html




                                            Valerio Capozio                                5 of 14
Phases of Clean and Site Lifecycles

             Clean Lifecycle                                         Site Lifecycle
  Phase               Purpose                             Phase               Purpose
pre-clean     -                                        pre-site       Cross check that all
                                                                      elements necessary for
clean         Remove all generated and
                                                                      the build are correct and
              compiled artifacts in
                                                                      present.
              preperation for a fresh
              build.                                   site           Generate an HTML web
                                                                      site containing project
post-clean    -
                                                                      information and reports.
                                                       post-site      -
                                                       site-deploy    Upload the generated
                                                                      website to a web server.




                                     Valerio Capozio                                  6 of 14
Phases of Default Lifecycle 1/2
                                                 Default Lifecycle
        Phase                                                        Purpose
validate                  validate the project is correct and all necessary information is available.
initialize                initialize build state, e.g. set properties or create directories.
generate-sources          generate any source code for inclusion in compilation.
process-sources           process the source code, for example to filter any values.
generate-resources        generate resources for inclusion in the package.
process-resources         copy and process the resources into the destination directory, ready for packaging.
compile                   compile the source code of the project.
process-classes           post-process the generated files from compilation (e.g. to do bytecode enhancement on classes)
generate-test-sources     generate any test source code for inclusion in compilation.
process-test-sources      process the test source code, for example to filter any values.
generate-test-resources   create resources for testing.
process-test-resources    copy and process the resources into the test destination directory.
test-compile              compile the test source code into the test destination directory
process-test-classes      post-process the generated files from test compilation (e.g. to do bytecode enhancement on
                          classes)




                                                   Valerio Capozio                                          7 of 14
Phases of Default Lifecycle 2/2
                                                Default Lifecycle
          Phase                                                     Purpose
test                    run tests using a suitable unit testing framework. These tests should not require the code be
                        packaged or deployed.
prepare-package         perform any operations necessary to prepare a package before the actual packaging. This often
                        results in an unpacked, processed version of the package. (Maven 2.1 and above)
package                 take the compiled code and package it in its distributable format, such as a JAR.
pre-integration-test    perform actions required before integration tests are executed. This may involve things such as
                        setting up the required environment.
integration-test        process and deploy the package if necessary into an environment where integration tests can be
                        run.
post-integration-test   perform actions required after integration tests have been executed. This may including cleaning up
                        the environment.
verify                  run any checks to verify the package is valid and meets quality criteria.
install                 install the package into the local repository, for use as a dependency in other projects locally.
deploy                  done in an integration or release environment, copies the final package to the remote repository for
                        sharing with other developers and projects.




                                                  Valerio Capozio                                           8 of 14
Dependency
                                                                            To express the reliance of our project on
                                                                          a particular artifact is possible declare a
                                                                          dependency in the Pom file.
                                                                            Each dependency can specify a scope,
                                                                          which manages its visibility and inclusion
Scope        Description                                                  in the final artifact.
compile      Needed for compilation, included in packages.
                                                                            Maven      manages     automatically   the
test         Needed for unit tests, not included in packages.
                                                                          transitive dependencies.
provided     Needed for compilation, but provided ar
             runtime.
                                                                            Dependency scope can affect the
system       Needed for compilation, given as absolute path
             on disk and not included in packages.                        transitivity mechanism.
import       Inline inclusion of a POM-type artifact.

           http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html



                                                        Valerio Capozio                                   9 of 14
Plugins
                                                             A plugin and its configuration are added
                                                           with a declaration, very similar to a
                                                           dependency, in the build section of the
                                                           Pom file.
                                                             Mojo is the acronym of the Maven
                                                           plugin      classes   and   derives   from
             Common Plugins                                aggregation of “Plain Old Java Object” and
surefire      Runs unit tests                              “Maven Java Object”.
checkstile    Check the code’s styling
assembly      Create ZIP and other
              distribution packages.




                                         Valerio Capozio                                  10 of 14
Repository
                                                              Repositories are used to hold collections
                                                            of Maven artifacts and dependencies.
                                                              Exist only two type of repositories: local
                                                            and remote.
                                                              Local repository refers to a copy on your
                                                            own installation. This repository is a cache
           Popular Repositories                             copy of the remote downloads.
Maven       http://repo1.maven.org/maven2/
                                                              Remote repositories are any other type
Codehaus    http://repository.codehaus.org/
                                                            of repository accessed by some protocol
JBoss       http://repository.jboss.org/maven2
                                                            (e.g. http:// file:// etc.)




                                          Valerio Capozio                                  11 of 14
Profiles
  With      profiles    can   specify     particular
behaviors       on      portions     of     Maven
configuration, including plugins, pathing and
configuration.
  They modify the POM at build time, and
are meant to be used in complementary sets
to give equivalent-but-different parameters
                                                                   The snippet above shows an example of profile
for a set of target environments.                                  declaration.
                                                                   A profile can be triggered/activated in several ways:
  A typical use of profiles is for build-time                         Explicitly
                                                                      Through Maven settings
customization of JAR dependencies based on                            Based on environment variables
                                                                      OS settings
the use of a specific Application Server.                             Present or missing files
                     http://maven.apache.org/guides/introduction/introduction-to-profiles.html



                                                 Valerio Capozio                                         12 of 14
About me
   Valerio Capozio                     Website
                                       angelusworld.com

                                       Linkedin
                                       linkendin.com

                                       Slideshare
                                       slideshare.net

                                       Twitter
                                       twitter.com




                     Valerio Capozio                      13 of 14
Thanks
Valerio Capozio   14 of 14

Weitere ähnliche Inhalte

Was ist angesagt?

[Webinar]: Working with Reactive Spring
[Webinar]: Working with Reactive Spring[Webinar]: Working with Reactive Spring
[Webinar]: Working with Reactive SpringKnoldus Inc.
 
Containers and workload security an overview
Containers and workload security an overview Containers and workload security an overview
Containers and workload security an overview Krishna-Kumar
 
Introducción a los contenedores Docker
Introducción a los contenedores DockerIntroducción a los contenedores Docker
Introducción a los contenedores DockerCarlos E. Vasquez P.
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - ExplainedSmita Prasad
 
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TShapeBlue
 
Java EE and Spring Side-by-Side
Java EE and Spring Side-by-SideJava EE and Spring Side-by-Side
Java EE and Spring Side-by-SideReza Rahman
 
Docker introduction
Docker introductionDocker introduction
Docker introductiondotCloud
 
Hadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of OzoneHadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of OzoneErik Krogen
 
Deep dive into Kubernetes Networking
Deep dive into Kubernetes NetworkingDeep dive into Kubernetes Networking
Deep dive into Kubernetes NetworkingSreenivas Makam
 
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트Ji-Woong Choi
 
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017 The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017 Xpand IT
 
Formation Gratuite Total Tests par les experts Java Ippon
Formation Gratuite Total Tests par les experts Java Ippon Formation Gratuite Total Tests par les experts Java Ippon
Formation Gratuite Total Tests par les experts Java Ippon Ippon
 
Apache Kafka Architecture & Fundamentals Explained
Apache Kafka Architecture & Fundamentals ExplainedApache Kafka Architecture & Fundamentals Explained
Apache Kafka Architecture & Fundamentals Explainedconfluent
 
Podman Overview and internals.pdf
Podman Overview and internals.pdfPodman Overview and internals.pdf
Podman Overview and internals.pdfSaim Safder
 
How Apache Kafka® Works
How Apache Kafka® WorksHow Apache Kafka® Works
How Apache Kafka® Worksconfluent
 
OpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesOpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesGerryJamisola1
 

Was ist angesagt? (20)

[Webinar]: Working with Reactive Spring
[Webinar]: Working with Reactive Spring[Webinar]: Working with Reactive Spring
[Webinar]: Working with Reactive Spring
 
Containers and workload security an overview
Containers and workload security an overview Containers and workload security an overview
Containers and workload security an overview
 
Introducción a los contenedores Docker
Introducción a los contenedores DockerIntroducción a los contenedores Docker
Introducción a los contenedores Docker
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - Explained
 
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&TCloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
CloudStack and GitOps at Enterprise Scale - Alex Dometrius, Rene Glover - AT&T
 
Java EE and Spring Side-by-Side
Java EE and Spring Side-by-SideJava EE and Spring Side-by-Side
Java EE and Spring Side-by-Side
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Hadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of OzoneHadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of Ozone
 
Deep dive into Kubernetes Networking
Deep dive into Kubernetes NetworkingDeep dive into Kubernetes Networking
Deep dive into Kubernetes Networking
 
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트
[오픈소스컨설팅] Docker를 활용한 Gitlab CI/CD 구성 테스트
 
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017 The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017
The Real World with OpenShift - Red Hat DevOps & Microservices Conference 2017
 
Jenkins.pdf
Jenkins.pdfJenkins.pdf
Jenkins.pdf
 
Project Reactor By Example
Project Reactor By ExampleProject Reactor By Example
Project Reactor By Example
 
Formation Gratuite Total Tests par les experts Java Ippon
Formation Gratuite Total Tests par les experts Java Ippon Formation Gratuite Total Tests par les experts Java Ippon
Formation Gratuite Total Tests par les experts Java Ippon
 
Apache Kafka Architecture & Fundamentals Explained
Apache Kafka Architecture & Fundamentals ExplainedApache Kafka Architecture & Fundamentals Explained
Apache Kafka Architecture & Fundamentals Explained
 
Podman Overview and internals.pdf
Podman Overview and internals.pdfPodman Overview and internals.pdf
Podman Overview and internals.pdf
 
How Apache Kafka® Works
How Apache Kafka® WorksHow Apache Kafka® Works
How Apache Kafka® Works
 
kafka
kafkakafka
kafka
 
OpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release NotesOpenShift Container Platform 4.12 Release Notes
OpenShift Container Platform 4.12 Release Notes
 
Maven
MavenMaven
Maven
 

Ähnlich wie Maven nutshell

Ähnlich wie Maven nutshell (20)

Apache maven, a software project management tool
Apache maven, a software project management toolApache maven, a software project management tool
Apache maven, a software project management tool
 
Maven
MavenMaven
Maven
 
Mavennotes.pdf
Mavennotes.pdfMavennotes.pdf
Mavennotes.pdf
 
Maven
MavenMaven
Maven
 
Introduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS worldIntroduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS world
 
Maven in mulesoft
Maven in mulesoftMaven in mulesoft
Maven in mulesoft
 
P&MSP2012 - Maven
P&MSP2012 - MavenP&MSP2012 - Maven
P&MSP2012 - Maven
 
Maven 2 features
Maven 2 featuresMaven 2 features
Maven 2 features
 
Maven
MavenMaven
Maven
 
Session 2
Session 2Session 2
Session 2
 
Session 2
Session 2Session 2
Session 2
 
Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topic
 
Maven
MavenMaven
Maven
 
Maven basics
Maven basicsMaven basics
Maven basics
 
Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topic
 
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptxCoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
CoC NA 2023 - Reproducible Builds for the JVM and beyond.pptx
 
Introduction to maven
Introduction to mavenIntroduction to maven
Introduction to maven
 
Maven
MavenMaven
Maven
 
Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
Maven
MavenMaven
Maven
 

Kürzlich hochgeladen

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 

Kürzlich hochgeladen (20)

04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 

Maven nutshell

  • 1. Maven Nutshell The Main Concepts Valerio Capozio 1 of 14
  • 2. Apache Maven Maven is a build automation tool, developed and managed from Apache Software Foundation. Maven serves a similar purpose of Apache Ant tool, but it offers an unparalleled software lifecycle management, providing a cohesive suite of verification, compilation, testing, packaging, reporting, and deployment plugins. Maven uses a convention over configuration approach to builds. Maven is typically used in Java projects, but it can be used also to manage projects in C#, Scala, Ruby and more other languages. Valerio Capozio 2 of 14
  • 3. Project Object Model Maven revolves around a metadata file, named pom.xml A file with this name has to exist in the root of every Maven project. In this file are defined the plugins to use, paths The snippet above shows the minimum information needed to define uniquely a Maven project through a and settings to override the Maven defaults of Pom. your project. A Maven project produces an element, such as JAR, WAR, EAR, etc uniquely identified by a vector of fields (groupId, Each POM inherits automatically from a Super artifactId, packaging, version). POM, a virtual POM embedded in the Maven core. A syntax to refer a specific Maven artifact is a string of vector elements, colon separated: Maven supports natively multi-module projects. groupId:artifactId:packaging:version http://maven.apache.org/guides/introduction/introduction-to-the-pom.html Valerio Capozio 3 of 14
  • 4. Execution Hierarchy Maven splits execution into four nested hierarchies. From most-generic to most-specific they are: Lifecycle Phase Plugin Goal Lifecycle represents a well-recognized flow of steps. Phase is a step of lifecycle. Zero or more plugin goals are bound to a phase. Plugin is a logical grouping and distribution of related goals. Goal is a single executable task within a plugin. Valerio Capozio 4 of 14
  • 5. Built-in Maven Lifecycle Maven has three built-in lifecycles: Clean Default Site Many of the phases within these three lifecycles are bound to a sensible plugin goal. Clean lifecycle deletes all generated artifacts from the output directory. Default lifecycle defines the commonly used phases to build an artifact, from its compilation to its installation on remote repository. Site lifecycle generates a project information web site and is able to deploy the artifacts to a specified web server or local path. http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html Valerio Capozio 5 of 14
  • 6. Phases of Clean and Site Lifecycles Clean Lifecycle Site Lifecycle Phase Purpose Phase Purpose pre-clean - pre-site Cross check that all elements necessary for clean Remove all generated and the build are correct and compiled artifacts in present. preperation for a fresh build. site Generate an HTML web site containing project post-clean - information and reports. post-site - site-deploy Upload the generated website to a web server. Valerio Capozio 6 of 14
  • 7. Phases of Default Lifecycle 1/2 Default Lifecycle Phase Purpose validate validate the project is correct and all necessary information is available. initialize initialize build state, e.g. set properties or create directories. generate-sources generate any source code for inclusion in compilation. process-sources process the source code, for example to filter any values. generate-resources generate resources for inclusion in the package. process-resources copy and process the resources into the destination directory, ready for packaging. compile compile the source code of the project. process-classes post-process the generated files from compilation (e.g. to do bytecode enhancement on classes) generate-test-sources generate any test source code for inclusion in compilation. process-test-sources process the test source code, for example to filter any values. generate-test-resources create resources for testing. process-test-resources copy and process the resources into the test destination directory. test-compile compile the test source code into the test destination directory process-test-classes post-process the generated files from test compilation (e.g. to do bytecode enhancement on classes) Valerio Capozio 7 of 14
  • 8. Phases of Default Lifecycle 2/2 Default Lifecycle Phase Purpose test run tests using a suitable unit testing framework. These tests should not require the code be packaged or deployed. prepare-package perform any operations necessary to prepare a package before the actual packaging. This often results in an unpacked, processed version of the package. (Maven 2.1 and above) package take the compiled code and package it in its distributable format, such as a JAR. pre-integration-test perform actions required before integration tests are executed. This may involve things such as setting up the required environment. integration-test process and deploy the package if necessary into an environment where integration tests can be run. post-integration-test perform actions required after integration tests have been executed. This may including cleaning up the environment. verify run any checks to verify the package is valid and meets quality criteria. install install the package into the local repository, for use as a dependency in other projects locally. deploy done in an integration or release environment, copies the final package to the remote repository for sharing with other developers and projects. Valerio Capozio 8 of 14
  • 9. Dependency To express the reliance of our project on a particular artifact is possible declare a dependency in the Pom file. Each dependency can specify a scope, which manages its visibility and inclusion Scope Description in the final artifact. compile Needed for compilation, included in packages. Maven manages automatically the test Needed for unit tests, not included in packages. transitive dependencies. provided Needed for compilation, but provided ar runtime. Dependency scope can affect the system Needed for compilation, given as absolute path on disk and not included in packages. transitivity mechanism. import Inline inclusion of a POM-type artifact. http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html Valerio Capozio 9 of 14
  • 10. Plugins A plugin and its configuration are added with a declaration, very similar to a dependency, in the build section of the Pom file. Mojo is the acronym of the Maven plugin classes and derives from Common Plugins aggregation of “Plain Old Java Object” and surefire Runs unit tests “Maven Java Object”. checkstile Check the code’s styling assembly Create ZIP and other distribution packages. Valerio Capozio 10 of 14
  • 11. Repository Repositories are used to hold collections of Maven artifacts and dependencies. Exist only two type of repositories: local and remote. Local repository refers to a copy on your own installation. This repository is a cache Popular Repositories copy of the remote downloads. Maven http://repo1.maven.org/maven2/ Remote repositories are any other type Codehaus http://repository.codehaus.org/ of repository accessed by some protocol JBoss http://repository.jboss.org/maven2 (e.g. http:// file:// etc.) Valerio Capozio 11 of 14
  • 12. Profiles With profiles can specify particular behaviors on portions of Maven configuration, including plugins, pathing and configuration. They modify the POM at build time, and are meant to be used in complementary sets to give equivalent-but-different parameters The snippet above shows an example of profile for a set of target environments. declaration. A profile can be triggered/activated in several ways: A typical use of profiles is for build-time Explicitly Through Maven settings customization of JAR dependencies based on Based on environment variables OS settings the use of a specific Application Server. Present or missing files http://maven.apache.org/guides/introduction/introduction-to-profiles.html Valerio Capozio 12 of 14
  • 13. About me Valerio Capozio Website angelusworld.com Linkedin linkendin.com Slideshare slideshare.net Twitter twitter.com Valerio Capozio 13 of 14