SlideShare ist ein Scribd-Unternehmen logo
1 von 26
Version Mgmt in
Maven
SOME BEST PRACTICES
Agenda
What is software versioning
How can maven help us?
◦ Maven release plugin

Best practices
◦ What to version?
◦ How to manage versions?

Tips and tricks
◦ Version handling with maven-versions-plugin
◦ Dependency analysis with maven-dependency-plugin
Version identifies software artefacts:

Software Versioning

◦ modules, applications, assemblies, …
◦ Uniquely identifies source code
◦ Build should be repeatable from that version of code

Most used:
◦ Major.minor[.bugfix][-qualifier[-build]]

Qualifiers:
◦
◦
◦
◦
◦

Alpha: not feature complete
Beta: contains critical bugs
CR: release candidate, not fully tested
Final: final version
SNAPSHOT
◦ Floating version, not an actual identification
◦ Should allways be used for code under development
Versioning with Source Code
Management
Basics of SCM (Git, Subversion, CVS, …)
◦ Synching software changes between developers
◦ Allowing multiple branches to be developed simultaneously
◦ Maintenance branches
◦ Feature branches
◦ Merge branches again 

◦ Tagging versions of code
◦ So you can find out later which bugs you solved when

SCM does not put a version number in your artifacts!
Maven in a nutshell
Maven Basics
Convention over configuration
◦ Convention for source code organization
◦ src/main/java
◦ src/webapp
◦ src/test/java

◦ Plugins with default configurations
◦ Jar, war, ear
◦ Surefire tests
◦ Reporting

Dependency Management
◦ Remote repository and local repository
◦ Transactional dependencies
Snapshots
In maven, versions under development have classifier ‘-SNAPSHOT’
◦ When building versions on a development system, you should always build SNAPSHOTS.
◦ When depending on a SNAPSHOT version of another module, maven will give you the latest
(timestamped) version
◦ Could give surprises of code that suddenly stops building
◦ Preferrably have the source code of your SNAPSHOT dependencies built locally

Non SNAPSHOT versions should be built only once and deployed once
◦ Should be tagged in Subversion/Git/CVS, and never changed
◦ (Unless you know for sure nobody got a copy yet)

◦ Released versions should never have SNAPSHOT dependencies
◦ See release plugin later
Organizing Maven Modules
Aggregator POM vs. Parent POM
◦ Aggregator POM organizes build of multiple modules
◦ One per subfolder
◦ Declares which subfolders contain modules

◦ Parent POM centralizes common configuration
◦ Plugin configuration
◦ Dependencies
◦ Dependency Management

Convention: Aggregator POM == Parent POM
◦ Exceptions are allowed
Typical Maven Workspace Hierarchy
Workspace POM
◦ Godfather aka archon (development team)
◦ Application System(s) (set of related applications)
◦ Application or Library

◦ Module Group(s) (if necessary)
◦ Module
Workspace POM
Dummy Aggregator POM
Just to launch other POM’s
Can use symbolic links to point to actual application roots to be built.
Godfather POM
Defines <distributionManagement> and <repositories>
◦ <distributionManagement>: where your artifacts are deployed
◦ <repositories>: where other necessary artifacts can be found

Rarely changes
◦ Simple fixed version number, e.g. 1, 2, 3, …

Do not put shared dependencies here
◦ Use maven import (since maven 2.0.9)
Application System POM
Inherits from Godfather
Defines external dependency versions in <dependencyManagement>
Defines common plugin configuration
◦ E.g. java compiler version

Could build an assembly containing all applications
Application or Library POM
Module groups
Defines internal dependency management
◦ Sibling modules
◦ Can use ${project.version}

Define more shared configuration
◦ Inapplicable on a higher level
◦ E.g. aspect jars to use
Module POM
Defines all direct dependencies
◦ Do not rely on transitive dependencies
◦ Use scopes when applicable
◦
◦
◦
◦

Compile
Runtime (e.g. JDBC Drivers)
Test (e.g. JUnit, DBUnit)
Provided (e.g. Java EE jars)
Maven release plugin
mvn release:prepare release:perform

◦ Verifies if you checked in everything
◦ Verifies if you have SNAPSHOT dependencies
◦ outside the current released modules

◦ Tries to build and test your modules
◦ Updates the version to the release version and tags it in SCM
◦ Recursively

◦ Checks out the tagged version and build and deploys the release version
◦ Updates the version to the next SNAPSHOT version and checks it in
◦ Recursively
Maven release plugin prerequisites
<distributionManagement>
◦ in godfather POM
◦ point to repository server (nexus)

<server> with login for repository
◦ authorized to deploy
◦ in settings.xml

<scm> tag
◦ Point to subversion/git/CVS
Demo1
Command line release cascade

Jenkins demo
What to Version / What to release
Could be: Individual Modules, Applications, Application System?
Depends on the lifecycle of your product
◦ Do you want to deploy/upgrade a single module or application?
◦ Can you test a single module?
◦ Can you test an application without testing the rest of the application system?
◦ Can you trace bugs in one application without knowing what other applications are running?
What if…
you release individual modules
Every module can have its own version
Maintenance releases with individual modules
◦ Dependants can stick to release versions if they want
◦ For big refactorings you need snapshot dependencies

Need big cascaded release to build a new version
What if…
you version an application system
Only one version to manage
Release all at once
Every change need a full release
Mix and match
Release some individual modules
◦ Those that are used in multiple applications

Release some applications as a whole
◦ Applications in maintenance

Release some application systems
◦ With strong intra-application dependencies
More interesting plugins
http://maven.apache.org/plugins/index.html

maven-help-plugin
◦ mvn help:effective-pom

maven-dependency-plugin
◦ mvn dependency:tree
◦ mvn dependency:analyze
◦ mvn dependency:analyze-dep-mgmt

maven-versions-plugin
◦ mvn versions:use-next-snapshots -DexcludeReactor=false -Dincludes=group:*
◦ mvn versions:update-child-modules
Demo2
maven-help-plugin

maven-dependency-plugin

maven-versions-plugin
Questions

Weitere ähnliche Inhalte

Was ist angesagt?

An Introduction to Maven
An Introduction to MavenAn Introduction to Maven
An Introduction to MavenVadym Lotar
 
Mobile application development ppt
Mobile application development pptMobile application development ppt
Mobile application development ppttirupathinews
 
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...Edureka!
 
Layer architecture of ios (1)
Layer architecture of ios (1)Layer architecture of ios (1)
Layer architecture of ios (1)dwipalp
 
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...Edureka!
 
CI, CD with Docker, Jenkins and Tutum
CI, CD with Docker, Jenkins and TutumCI, CD with Docker, Jenkins and Tutum
CI, CD with Docker, Jenkins and TutumSreenivas Makam
 
iOS Coding Best Practices
iOS Coding Best PracticesiOS Coding Best Practices
iOS Coding Best PracticesJean-Luc David
 
Jenkins tutorial for beginners
Jenkins tutorial for beginnersJenkins tutorial for beginners
Jenkins tutorial for beginnersBugRaptors
 
Continuous Delivery, Continuous Integration
Continuous Delivery, Continuous Integration Continuous Delivery, Continuous Integration
Continuous Delivery, Continuous Integration Amazon Web Services
 

Was ist angesagt? (20)

Maven Introduction
Maven IntroductionMaven Introduction
Maven Introduction
 
An Introduction to Maven
An Introduction to MavenAn Introduction to Maven
An Introduction to Maven
 
devops
devops devops
devops
 
Jenkins tutorial
Jenkins tutorialJenkins tutorial
Jenkins tutorial
 
DevOps
DevOpsDevOps
DevOps
 
Mobile application development ppt
Mobile application development pptMobile application development ppt
Mobile application development ppt
 
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
Jenkins Pipeline Tutorial | Continuous Delivery Pipeline Using Jenkins | DevO...
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Jenkins-CI
Jenkins-CIJenkins-CI
Jenkins-CI
 
Jenkins CI
Jenkins CIJenkins CI
Jenkins CI
 
Layer architecture of ios (1)
Layer architecture of ios (1)Layer architecture of ios (1)
Layer architecture of ios (1)
 
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
CI CD Pipeline Using Jenkins | Continuous Integration and Deployment | DevOps...
 
iOS Application Penetration Testing
iOS Application Penetration TestingiOS Application Penetration Testing
iOS Application Penetration Testing
 
CI, CD with Docker, Jenkins and Tutum
CI, CD with Docker, Jenkins and TutumCI, CD with Docker, Jenkins and Tutum
CI, CD with Docker, Jenkins and Tutum
 
iOS Coding Best Practices
iOS Coding Best PracticesiOS Coding Best Practices
iOS Coding Best Practices
 
Jenkins
JenkinsJenkins
Jenkins
 
Jenkins tutorial for beginners
Jenkins tutorial for beginnersJenkins tutorial for beginners
Jenkins tutorial for beginners
 
Continuous Delivery, Continuous Integration
Continuous Delivery, Continuous Integration Continuous Delivery, Continuous Integration
Continuous Delivery, Continuous Integration
 
AR with vuforia
AR with vuforiaAR with vuforia
AR with vuforia
 
Defect Life Cycle
Defect Life CycleDefect Life Cycle
Defect Life Cycle
 

Ähnlich wie Version Management in Maven

Jbossworld Presentation
Jbossworld PresentationJbossworld Presentation
Jbossworld PresentationDan Hinojosa
 
Intro To Version Control
Intro To Version ControlIntro To Version Control
Intro To Version Controlceardach
 
SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps JumpstartOri Donner
 
Apache Maven - eXo VN office presentation
Apache Maven - eXo VN office presentationApache Maven - eXo VN office presentation
Apache Maven - eXo VN office presentationArnaud Héritier
 
Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topicGourav Varma
 
Presentation 1 open source tools in continuous integration environment v1.0
Presentation 1   open source tools in continuous integration environment v1.0Presentation 1   open source tools in continuous integration environment v1.0
Presentation 1 open source tools in continuous integration environment v1.0Jasmine Conseil
 
Maven in mulesoft
Maven in mulesoftMaven in mulesoft
Maven in mulesoftvenkata20k
 
Java is evolving rapidly: Maven helps you staying on track
Java is evolving rapidly:  Maven helps you staying on trackJava is evolving rapidly:  Maven helps you staying on track
Java is evolving rapidly: Maven helps you staying on trackArnaud Héritier
 
Opendaylight SDN Controller
Opendaylight SDN ControllerOpendaylight SDN Controller
Opendaylight SDN ControllerSumit Arora
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulMert Çalışkan
 
Source version control using subversion
Source version control using subversionSource version control using subversion
Source version control using subversionMangesh Bhujbal
 
Maven 2 features
Maven 2 featuresMaven 2 features
Maven 2 featuresAngel Ruiz
 
DevOps presentation
DevOps presentationDevOps presentation
DevOps presentationAxsh Co. LTD
 

Ähnlich wie Version Management in Maven (20)

Jbossworld Presentation
Jbossworld PresentationJbossworld Presentation
Jbossworld Presentation
 
Intro To Version Control
Intro To Version ControlIntro To Version Control
Intro To Version Control
 
Agile Software Development & Tools
Agile Software Development & ToolsAgile Software Development & Tools
Agile Software Development & Tools
 
SQL Server DevOps Jumpstart
SQL Server DevOps JumpstartSQL Server DevOps Jumpstart
SQL Server DevOps Jumpstart
 
Maven
MavenMaven
Maven
 
Build server
Build serverBuild server
Build server
 
A-Z_Maven.pdf
A-Z_Maven.pdfA-Z_Maven.pdf
A-Z_Maven.pdf
 
Apache Maven - eXo VN office presentation
Apache Maven - eXo VN office presentationApache Maven - eXo VN office presentation
Apache Maven - eXo VN office presentation
 
Jenkins advance topic
Jenkins advance topicJenkins advance topic
Jenkins advance topic
 
Mavennotes.pdf
Mavennotes.pdfMavennotes.pdf
Mavennotes.pdf
 
Presentation 1 open source tools in continuous integration environment v1.0
Presentation 1   open source tools in continuous integration environment v1.0Presentation 1   open source tools in continuous integration environment v1.0
Presentation 1 open source tools in continuous integration environment v1.0
 
Maven in mulesoft
Maven in mulesoftMaven in mulesoft
Maven in mulesoft
 
Java is evolving rapidly: Maven helps you staying on track
Java is evolving rapidly:  Maven helps you staying on trackJava is evolving rapidly:  Maven helps you staying on track
Java is evolving rapidly: Maven helps you staying on track
 
Session 2
Session 2Session 2
Session 2
 
Session 2
Session 2Session 2
Session 2
 
Opendaylight SDN Controller
Opendaylight SDN ControllerOpendaylight SDN Controller
Opendaylight SDN Controller
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest Istanbul
 
Source version control using subversion
Source version control using subversionSource version control using subversion
Source version control using subversion
 
Maven 2 features
Maven 2 featuresMaven 2 features
Maven 2 features
 
DevOps presentation
DevOps presentationDevOps presentation
DevOps presentation
 

Mehr von Geert Pante

OAuth2 and OpenID with Spring Boot
OAuth2 and OpenID with Spring BootOAuth2 and OpenID with Spring Boot
OAuth2 and OpenID with Spring BootGeert Pante
 
Kafka Introduction.pptx
Kafka Introduction.pptxKafka Introduction.pptx
Kafka Introduction.pptxGeert Pante
 
Kubernetes and Amazon ECS
Kubernetes and Amazon ECSKubernetes and Amazon ECS
Kubernetes and Amazon ECSGeert Pante
 
Docker in practice
Docker in practiceDocker in practice
Docker in practiceGeert Pante
 
Spring JMS and ActiveMQ
Spring JMS and ActiveMQSpring JMS and ActiveMQ
Spring JMS and ActiveMQGeert Pante
 
Log management with ELK
Log management with ELKLog management with ELK
Log management with ELKGeert Pante
 
Spring 4 en spring data
Spring 4 en spring dataSpring 4 en spring data
Spring 4 en spring dataGeert Pante
 
Spring and SOA (2006)
Spring and SOA (2006)Spring and SOA (2006)
Spring and SOA (2006)Geert Pante
 
Maven plugins, properties en profiles: Advanced concepts in Maven
Maven plugins, properties en profiles: Advanced concepts in MavenMaven plugins, properties en profiles: Advanced concepts in Maven
Maven plugins, properties en profiles: Advanced concepts in MavenGeert Pante
 
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRISThe glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRISGeert Pante
 

Mehr von Geert Pante (11)

OAuth2 and OpenID with Spring Boot
OAuth2 and OpenID with Spring BootOAuth2 and OpenID with Spring Boot
OAuth2 and OpenID with Spring Boot
 
Kafka Introduction.pptx
Kafka Introduction.pptxKafka Introduction.pptx
Kafka Introduction.pptx
 
Kubernetes and Amazon ECS
Kubernetes and Amazon ECSKubernetes and Amazon ECS
Kubernetes and Amazon ECS
 
Docker in practice
Docker in practiceDocker in practice
Docker in practice
 
Spring JMS and ActiveMQ
Spring JMS and ActiveMQSpring JMS and ActiveMQ
Spring JMS and ActiveMQ
 
Log management with ELK
Log management with ELKLog management with ELK
Log management with ELK
 
Java EE 6
Java EE 6Java EE 6
Java EE 6
 
Spring 4 en spring data
Spring 4 en spring dataSpring 4 en spring data
Spring 4 en spring data
 
Spring and SOA (2006)
Spring and SOA (2006)Spring and SOA (2006)
Spring and SOA (2006)
 
Maven plugins, properties en profiles: Advanced concepts in Maven
Maven plugins, properties en profiles: Advanced concepts in MavenMaven plugins, properties en profiles: Advanced concepts in Maven
Maven plugins, properties en profiles: Advanced concepts in Maven
 
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRISThe glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
 

Kürzlich hochgeladen

Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
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 FMESafe Software
 
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.pptxRustici Software
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
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 ModelDeepika Singh
 
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, Adobeapidays
 
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 REVIEWERMadyBayot
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
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 businesspanagenda
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
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 WorkerThousandEyes
 
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
 
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 educationjfdjdjcjdnsjd
 
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...apidays
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 

Kürzlich hochgeladen (20)

Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
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
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
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
 
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
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
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
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
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
 
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...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 

Version Management in Maven

  • 1. Version Mgmt in Maven SOME BEST PRACTICES
  • 2. Agenda What is software versioning How can maven help us? ◦ Maven release plugin Best practices ◦ What to version? ◦ How to manage versions? Tips and tricks ◦ Version handling with maven-versions-plugin ◦ Dependency analysis with maven-dependency-plugin
  • 3. Version identifies software artefacts: Software Versioning ◦ modules, applications, assemblies, … ◦ Uniquely identifies source code ◦ Build should be repeatable from that version of code Most used: ◦ Major.minor[.bugfix][-qualifier[-build]] Qualifiers: ◦ ◦ ◦ ◦ ◦ Alpha: not feature complete Beta: contains critical bugs CR: release candidate, not fully tested Final: final version SNAPSHOT ◦ Floating version, not an actual identification ◦ Should allways be used for code under development
  • 4. Versioning with Source Code Management Basics of SCM (Git, Subversion, CVS, …) ◦ Synching software changes between developers ◦ Allowing multiple branches to be developed simultaneously ◦ Maintenance branches ◦ Feature branches ◦ Merge branches again  ◦ Tagging versions of code ◦ So you can find out later which bugs you solved when SCM does not put a version number in your artifacts!
  • 5.
  • 6. Maven in a nutshell
  • 7. Maven Basics Convention over configuration ◦ Convention for source code organization ◦ src/main/java ◦ src/webapp ◦ src/test/java ◦ Plugins with default configurations ◦ Jar, war, ear ◦ Surefire tests ◦ Reporting Dependency Management ◦ Remote repository and local repository ◦ Transactional dependencies
  • 8. Snapshots In maven, versions under development have classifier ‘-SNAPSHOT’ ◦ When building versions on a development system, you should always build SNAPSHOTS. ◦ When depending on a SNAPSHOT version of another module, maven will give you the latest (timestamped) version ◦ Could give surprises of code that suddenly stops building ◦ Preferrably have the source code of your SNAPSHOT dependencies built locally Non SNAPSHOT versions should be built only once and deployed once ◦ Should be tagged in Subversion/Git/CVS, and never changed ◦ (Unless you know for sure nobody got a copy yet) ◦ Released versions should never have SNAPSHOT dependencies ◦ See release plugin later
  • 9. Organizing Maven Modules Aggregator POM vs. Parent POM ◦ Aggregator POM organizes build of multiple modules ◦ One per subfolder ◦ Declares which subfolders contain modules ◦ Parent POM centralizes common configuration ◦ Plugin configuration ◦ Dependencies ◦ Dependency Management Convention: Aggregator POM == Parent POM ◦ Exceptions are allowed
  • 10. Typical Maven Workspace Hierarchy Workspace POM ◦ Godfather aka archon (development team) ◦ Application System(s) (set of related applications) ◦ Application or Library ◦ Module Group(s) (if necessary) ◦ Module
  • 11. Workspace POM Dummy Aggregator POM Just to launch other POM’s Can use symbolic links to point to actual application roots to be built.
  • 12. Godfather POM Defines <distributionManagement> and <repositories> ◦ <distributionManagement>: where your artifacts are deployed ◦ <repositories>: where other necessary artifacts can be found Rarely changes ◦ Simple fixed version number, e.g. 1, 2, 3, … Do not put shared dependencies here ◦ Use maven import (since maven 2.0.9)
  • 13. Application System POM Inherits from Godfather Defines external dependency versions in <dependencyManagement> Defines common plugin configuration ◦ E.g. java compiler version Could build an assembly containing all applications
  • 14. Application or Library POM Module groups Defines internal dependency management ◦ Sibling modules ◦ Can use ${project.version} Define more shared configuration ◦ Inapplicable on a higher level ◦ E.g. aspect jars to use
  • 15. Module POM Defines all direct dependencies ◦ Do not rely on transitive dependencies ◦ Use scopes when applicable ◦ ◦ ◦ ◦ Compile Runtime (e.g. JDBC Drivers) Test (e.g. JUnit, DBUnit) Provided (e.g. Java EE jars)
  • 16. Maven release plugin mvn release:prepare release:perform ◦ Verifies if you checked in everything ◦ Verifies if you have SNAPSHOT dependencies ◦ outside the current released modules ◦ Tries to build and test your modules ◦ Updates the version to the release version and tags it in SCM ◦ Recursively ◦ Checks out the tagged version and build and deploys the release version ◦ Updates the version to the next SNAPSHOT version and checks it in ◦ Recursively
  • 17. Maven release plugin prerequisites <distributionManagement> ◦ in godfather POM ◦ point to repository server (nexus) <server> with login for repository ◦ authorized to deploy ◦ in settings.xml <scm> tag ◦ Point to subversion/git/CVS
  • 18.
  • 19. Demo1 Command line release cascade Jenkins demo
  • 20. What to Version / What to release Could be: Individual Modules, Applications, Application System? Depends on the lifecycle of your product ◦ Do you want to deploy/upgrade a single module or application? ◦ Can you test a single module? ◦ Can you test an application without testing the rest of the application system? ◦ Can you trace bugs in one application without knowing what other applications are running?
  • 21. What if… you release individual modules Every module can have its own version Maintenance releases with individual modules ◦ Dependants can stick to release versions if they want ◦ For big refactorings you need snapshot dependencies Need big cascaded release to build a new version
  • 22. What if… you version an application system Only one version to manage Release all at once Every change need a full release
  • 23. Mix and match Release some individual modules ◦ Those that are used in multiple applications Release some applications as a whole ◦ Applications in maintenance Release some application systems ◦ With strong intra-application dependencies
  • 24. More interesting plugins http://maven.apache.org/plugins/index.html maven-help-plugin ◦ mvn help:effective-pom maven-dependency-plugin ◦ mvn dependency:tree ◦ mvn dependency:analyze ◦ mvn dependency:analyze-dep-mgmt maven-versions-plugin ◦ mvn versions:use-next-snapshots -DexcludeReactor=false -Dincludes=group:* ◦ mvn versions:update-child-modules