SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

Introduction to CICD
Introduction to CICDIntroduction to CICD
Introduction to CICDKnoldus Inc.
 
(Declarative) Jenkins Pipelines
(Declarative) Jenkins Pipelines(Declarative) Jenkins Pipelines
(Declarative) Jenkins PipelinesSteffen Gebert
 
Maven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafeMaven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafeHolasz Kati
 
CI/CD Overview
CI/CD OverviewCI/CD Overview
CI/CD OverviewAn Nguyen
 
Monitoring kubernetes with prometheus
Monitoring kubernetes with prometheusMonitoring kubernetes with prometheus
Monitoring kubernetes with prometheusBrice Fernandes
 
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!
 
Fundamentals of DevOps and CI/CD
Fundamentals of DevOps and CI/CDFundamentals of DevOps and CI/CD
Fundamentals of DevOps and CI/CDBatyr Nuryyev
 
DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..Siddharth Joshi
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOpsMatthew David
 
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...Simplilearn
 
Jenkins tutorial for beginners
Jenkins tutorial for beginnersJenkins tutorial for beginners
Jenkins tutorial for beginnersBugRaptors
 
DevOps 101 - an Introduction to DevOps
DevOps 101  - an Introduction to DevOpsDevOps 101  - an Introduction to DevOps
DevOps 101 - an Introduction to DevOpsRed Gate Software
 
Continuous Integration With Jenkins
Continuous Integration With JenkinsContinuous Integration With Jenkins
Continuous Integration With JenkinsEdureka!
 
Azure DevOps CI/CD For Beginners
Azure DevOps CI/CD  For BeginnersAzure DevOps CI/CD  For Beginners
Azure DevOps CI/CD For BeginnersRahul Nath
 
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...Sonatype
 
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | Edureka
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | EdurekaDevOps Interview Questions and Answers 2019 | DevOps Tutorial | Edureka
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | EdurekaEdureka!
 
Dev ops != Dev+Ops
Dev ops != Dev+OpsDev ops != Dev+Ops
Dev ops != Dev+OpsShalu Ahuja
 

La actualidad más candente (20)

Introduction to CICD
Introduction to CICDIntroduction to CICD
Introduction to CICD
 
(Declarative) Jenkins Pipelines
(Declarative) Jenkins Pipelines(Declarative) Jenkins Pipelines
(Declarative) Jenkins Pipelines
 
Maven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafeMaven Presentation - SureFire vs FailSafe
Maven Presentation - SureFire vs FailSafe
 
CI/CD Overview
CI/CD OverviewCI/CD Overview
CI/CD Overview
 
Monitoring kubernetes with prometheus
Monitoring kubernetes with prometheusMonitoring kubernetes with prometheus
Monitoring kubernetes with prometheus
 
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...
 
Fundamentals of DevOps and CI/CD
Fundamentals of DevOps and CI/CDFundamentals of DevOps and CI/CD
Fundamentals of DevOps and CI/CD
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..DevOps to DevSecOps Journey..
DevOps to DevSecOps Journey..
 
Introduction to DevOps
Introduction to DevOpsIntroduction to DevOps
Introduction to DevOps
 
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
DevOps Tutorial For Beginners | DevOps Tutorial | DevOps Tools | DevOps Train...
 
Jenkins tutorial for beginners
Jenkins tutorial for beginnersJenkins tutorial for beginners
Jenkins tutorial for beginners
 
DevOps 101 - an Introduction to DevOps
DevOps 101  - an Introduction to DevOpsDevOps 101  - an Introduction to DevOps
DevOps 101 - an Introduction to DevOps
 
Continuous Integration With Jenkins
Continuous Integration With JenkinsContinuous Integration With Jenkins
Continuous Integration With Jenkins
 
Azure DevOps CI/CD For Beginners
Azure DevOps CI/CD  For BeginnersAzure DevOps CI/CD  For Beginners
Azure DevOps CI/CD For Beginners
 
Jenkins
JenkinsJenkins
Jenkins
 
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
DevOps and Continuous Delivery Reference Architectures (including Nexus and o...
 
CICD with Jenkins
CICD with JenkinsCICD with Jenkins
CICD with Jenkins
 
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | Edureka
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | EdurekaDevOps Interview Questions and Answers 2019 | DevOps Tutorial | Edureka
DevOps Interview Questions and Answers 2019 | DevOps Tutorial | Edureka
 
Dev ops != Dev+Ops
Dev ops != Dev+OpsDev ops != Dev+Ops
Dev ops != Dev+Ops
 

Similar a Best Practices for Version Mgmt 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
 

Similar a Best Practices for Version Mgmt 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
 

Más de 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
 

Más de 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
 

Último

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
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
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 

Último (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
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...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Best Practices for Version Mgmt 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