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?

What CloudStackers Need To Know About LINSTOR/DRBD
What CloudStackers Need To Know About LINSTOR/DRBDWhat CloudStackers Need To Know About LINSTOR/DRBD
What CloudStackers Need To Know About LINSTOR/DRBD
ShapeBlue
 

Was ist angesagt? (20)

Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
Getting Started With Docker | Docker Tutorial | Docker Training | EdurekaGetting Started With Docker | Docker Tutorial | Docker Training | Edureka
Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
 
Exadata
ExadataExadata
Exadata
 
Patterns of resilience
Patterns of resiliencePatterns of resilience
Patterns of resilience
 
大數據
大數據大數據
大數據
 
Battle of the frameworks : Quarkus vs SpringBoot
Battle of the frameworks : Quarkus vs SpringBootBattle of the frameworks : Quarkus vs SpringBoot
Battle of the frameworks : Quarkus vs SpringBoot
 
Troubleshooting Common Network Related Issues with NetScaler
Troubleshooting Common Network Related Issues with NetScalerTroubleshooting Common Network Related Issues with NetScaler
Troubleshooting Common Network Related Issues with NetScaler
 
UrbanCode Deploy DevOps Best Practices
UrbanCode Deploy  DevOps Best PracticesUrbanCode Deploy  DevOps Best Practices
UrbanCode Deploy DevOps Best Practices
 
Spring cloud for microservices architecture
Spring cloud for microservices architectureSpring cloud for microservices architecture
Spring cloud for microservices architecture
 
【Oracle Cloud ウェビナー】WebLogic Serverのご紹介
【Oracle Cloud ウェビナー】WebLogic Serverのご紹介【Oracle Cloud ウェビナー】WebLogic Serverのご紹介
【Oracle Cloud ウェビナー】WebLogic Serverのご紹介
 
[OpenStack Days Korea 2016] Track1 - All flash CEPH 구성 및 최적화
[OpenStack Days Korea 2016] Track1 - All flash CEPH 구성 및 최적화[OpenStack Days Korea 2016] Track1 - All flash CEPH 구성 및 최적화
[OpenStack Days Korea 2016] Track1 - All flash CEPH 구성 및 최적화
 
Net backup application protection jp
Net backup application protection jpNet backup application protection jp
Net backup application protection jp
 
Microservice With Spring Boot and Spring Cloud
Microservice With Spring Boot and Spring CloudMicroservice With Spring Boot and Spring Cloud
Microservice With Spring Boot and Spring Cloud
 
Secrets of Performance Tuning Java on Kubernetes
Secrets of Performance Tuning Java on KubernetesSecrets of Performance Tuning Java on Kubernetes
Secrets of Performance Tuning Java on Kubernetes
 
vSphere 7 へのアップグレードについて
vSphere 7 へのアップグレードについてvSphere 7 へのアップグレードについて
vSphere 7 へのアップグレードについて
 
Spring Boot Tutorial | Microservices Spring Boot | Microservices Architecture...
Spring Boot Tutorial | Microservices Spring Boot | Microservices Architecture...Spring Boot Tutorial | Microservices Spring Boot | Microservices Architecture...
Spring Boot Tutorial | Microservices Spring Boot | Microservices Architecture...
 
Bsides SP 2022 - EPSS - Final.pptx
Bsides SP 2022 - EPSS - Final.pptxBsides SP 2022 - EPSS - Final.pptx
Bsides SP 2022 - EPSS - Final.pptx
 
Citrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation GuideCitrix StoreFront - Implementation Guide
Citrix StoreFront - Implementation Guide
 
librados
libradoslibrados
librados
 
What CloudStackers Need To Know About LINSTOR/DRBD
What CloudStackers Need To Know About LINSTOR/DRBDWhat CloudStackers Need To Know About LINSTOR/DRBD
What CloudStackers Need To Know About LINSTOR/DRBD
 
IBM RedHat OCP Vs xKS.pptx
IBM RedHat OCP Vs xKS.pptxIBM RedHat OCP Vs xKS.pptx
IBM RedHat OCP Vs xKS.pptx
 

Ähnlich wie Maven nutshell

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
Renato Primavera
 
Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topic
Kalkey
 
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
Hervé Boutemy
 

Ä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

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Kürzlich hochgeladen (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
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
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.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