SlideShare uma empresa Scribd logo
1 de 14
Baixar para ler offline
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

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Vlan final
Vlan finalVlan final
Vlan final
 
Doc6 mpls vpn-ppt
Doc6 mpls vpn-pptDoc6 mpls vpn-ppt
Doc6 mpls vpn-ppt
 
Cours etherchannel
Cours etherchannelCours etherchannel
Cours etherchannel
 
GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)
 
Cours VTP
Cours VTPCours VTP
Cours VTP
 
Virtual Private Network
Virtual Private NetworkVirtual Private Network
Virtual Private Network
 
Résumé ccna 1chapitre 1 v5.0
Résumé ccna 1chapitre 1 v5.0Résumé ccna 1chapitre 1 v5.0
Résumé ccna 1chapitre 1 v5.0
 
Mikrotik basic configuration
Mikrotik basic configurationMikrotik basic configuration
Mikrotik basic configuration
 
EVPN Introduction
EVPN IntroductionEVPN Introduction
EVPN Introduction
 
VLAN
VLANVLAN
VLAN
 
Introduction to vxlan
Introduction to vxlanIntroduction to vxlan
Introduction to vxlan
 
Cours Vlan
Cours VlanCours Vlan
Cours Vlan
 
Les Vpn
Les VpnLes Vpn
Les Vpn
 
Vlan.pdf
Vlan.pdfVlan.pdf
Vlan.pdf
 
Tp snmp-packet-tracer
Tp snmp-packet-tracerTp snmp-packet-tracer
Tp snmp-packet-tracer
 
MESSAGERIE EXCHANGE 2013 SOUS WINDOWS SERVEUR 2012
MESSAGERIE EXCHANGE 2013 SOUS WINDOWS SERVEUR 2012MESSAGERIE EXCHANGE 2013 SOUS WINDOWS SERVEUR 2012
MESSAGERIE EXCHANGE 2013 SOUS WINDOWS SERVEUR 2012
 
VPN - Virtual Private Network
VPN - Virtual Private NetworkVPN - Virtual Private Network
VPN - Virtual Private Network
 
Packet flow on openstack
Packet flow on openstackPacket flow on openstack
Packet flow on openstack
 
Contrail Deep-dive - Cloud Network Services at Scale
Contrail Deep-dive - Cloud Network Services at ScaleContrail Deep-dive - Cloud Network Services at Scale
Contrail Deep-dive - Cloud Network Services at Scale
 
EtherChannel Configuration
EtherChannel ConfigurationEtherChannel Configuration
EtherChannel Configuration
 

Semelhante a Maven nutshell

Semelhante a 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
 

Último

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Último (20)

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

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