SlideShare une entreprise Scribd logo
1  sur  33
Télécharger pour lire hors ligne
Blog: blog.soebes.io
Twitter: @khmarbaise
Email: maven4@soebes.de
Dipl.Ing.(FH) Karl Heinz Marbaise
Apache Maven 4.0.0
–
The Future
www.soebes.com 2
About me
●
Apache Maven Committer
– since Dec. 2013
●
Apache Maven PMC Member
– since August 2014
●
Apache Software Foundation Member
– since April 2017
●
Apache Maven Project Chairman
– Since April 2022
www.soebes.com 3
Agenda
●
Apache Maven Ecosystem
●
Maven Ecosystem
●
Architecture
●
Consumer/Build POM
●
Timeline
●
JDK Requirement
●
Questions
www.soebes.com 5
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
www.soebes.com 6
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• Core: clean, compiler, resources, install,
deploy, surefire, …
• Packaging: jar, war, shade, source, jlink,
jmod, …
• Reporting: site, javadoc, jxr, pmd, jdeps,
checkstyl, ...
• Tools: archetype, assembly, enforcer,
dependency, …
www.soebes.com 7
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent
POMs
Archetypes
Indexer
• ASF Maven Parent
• Maven Parent
• Maven Plugin Parent
• Maven Shared Parent
• Maven Skins Parent
• Apache Resource Bundle
www.soebes.com 8
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• maven-archiver
• maven-invoker
• maven-filtering
• maven-dependency-analyzer
• maven-artifact-transfer
• maven-jarsigner
• maven-shared-utils
• maven-shared-io
• ...
www.soebes.com 9
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• Doxia Core
• Doxia Site Tools
• Doxia Modules
● apt, xdoc, markdown,FML, …
• ...
www.soebes.com 10
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• Maven Default Skin
• Maven Fluido Skin
• Maven Application Skin
• Maven Classic Skin
• Maven Stylus Skin
www.soebes.com 11
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• maven-archetype-j2ee-simple
• maven-archetype-plugin
• maven-archetype-quickstart
• ...
www.soebes.com 12
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
• aka Eclipse Aether (2016)
http://incubator.apache.org/ip-
clearance/maven-aether.html
www.soebes.com 13
Apache Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
www.soebes.com 14
Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
Plexus Components (~13) MojoHaus Plugins (~80)
• https://github.com/codehaus-plexus
https://github.com/codehaus-plexus
● plexus-classworlds
● plexus-modello
● plexus-utils
● plexus-archiver
● plexus-io
● plexus-languages
● Plexus-interpolation
...
www.soebes.com 15
Maven Ecosystem
Maven Plugins (~50)
Maven
Core Core
ITs
Artifact Resolver
Maven Shared Components (~25)
Doxia
Skins
Parent POMs
Archetypes
Indexer
Plexus Components (~13) MojoHaus Plugins (~80)
• https://github.com/mojohaus/
https://github.com/mojohaus/
● mrm-maven-plugin
● versions-maven-plugin
● build-helper-maven-plugin
● buildnumber-maven-plugin
● animal-sniffer-maven-plugin
● appassembler-maven-plugin
● jaxb2-maven-plugin
● flatten-maven-plugin
● exec-maven-plugin
● rpm-maven-plugin
● templating-maven-plugin
● ...
www.soebes.com 16
Architecture
Maven 2 - 2005
www.soebes.com 17
Architecture
Maven 3 - 2010
www.soebes.com 18
Architecture
Maven 3.5+ - 2017
www.soebes.com 19
Architecture
Maven 4.X - 2020/2021/2022
www.soebes.com 20
Consumer / Build POM
POM V4
●
Maven 1 started with the story
modelVersion 3.0.0
●
Maven 2/3 has continued the story with
modelVersion 4.0.0
<project ...>
<modelVersion>4.0.0</modelVersion>
…
</project>
www.soebes.com 21
Consumer / Build POM
POM V4
●
The pom declarares the following
information:
●
dependencies, dependencyManagement
●
plugins, pluginManagement
●
profiles, repositories
●
build, reporting
●
distributionManagement
●
etc.
www.soebes.com 22
Consumer / Build POM
POM V4
●
The function of a POM:
1.Serves as declarative description of
the build process for a project.
2.Serves as a description of the project
dependency graph.
www.soebes.com 23
Consumer / Build POM
POM V4
●
Changing the POM format?
– The POM is consumed by:
●
Apache BuildR, Gradle, Apache Ivy, sbt
●
by IDE's
●
and many other tools
– as a description of dependencies.
www.soebes.com 24
Consumer / Build POM
POM V4
●
Requirements to change the POM
format:
– All tools would needed to be changed.
– We have to fork
fork Central Repository.
www.soebes.com 25
Consumer / Build POM
POM V4
●
Requirements to change the POM
format:
– All tools would needed to be changed.
– We have to fork
fork Central Repository.
www.soebes.com 26
Consumer / Build POM
POM V5
Build
Information
POM V5+ POM V4
Consumer POM
Central Repository
Build POM
Project Dependency Tree (PDT)
www.soebes.com 27
Consumer / Build POM
POM V4
●
POM V4 a.k.a. Consumer POM
Consumer POM
– Contains only dependencies (+
dependencyManagement)
– Remove all properties / build / modules
/ parent / ….
– See flatten-maven-plugin
●
https://cwiki.apache.org/confluence/display/MAVEN/Build+vs+Consumer+POM
www.soebes.com 28
DEMO
www.soebes.com 29
POM V5 → Maven 5.X
●
Core must be able to read:
– POM V4
– POM V5
●
Core must be able to produce POM V4
www.soebes.com 30
Timeline
●
Maven 4
– Build/Consumer POM
– Reactor Improvements
●
Maven 3.X/4.X
– Maven Wrapper
– Maven Daemon
●
https://cwiki.apache.org/confluence/display/MAVEN/Build+vs+Consumer+POM
www.soebes.com 31
Minimum JDK Runtime
Requirements
●
Twitter Poll
– 1,841 Votes
●
JDK 8 – 16.1 %
●
JDK 11 – 36.9 %
●
JDK 17 – 43 %
●
Version available at time GA – 4 %
●
https://twitter.com/khmarbaise/status/1549429653202518016
www.soebes.com 32
Minimum JDK Runtime
Requirements
●
LinkedIn Poll
– 3,717 Votes
●
JDK 8 – 56 %
●
JDK 11 – 27 %
●
JDK 17 – 13 %
●
Version available at time GA – 5 %
●
https://www.linkedin.com/feed/update/urn:li:activity:6955432897084325889
www.soebes.com 33
Minimum JDK Runtime
Requirements
●
Maven 3.8.X
– JDK 7
●
Maven 3.9.X (NOT YET!)
– JDK 8
●
Maven 4.X (NOT YET!)
– actually 8 maybe we change to JDK 11
or even on JDK17; Not sure yet!
https://maven.apache.org/docs/history.html
www.soebes.com 34
maven4@soebes.com
Thank you for your attention.
Questions?

Contenu connexe

Similaire à Apache Maven 4.0.0 - The Future

Introduction in Apache Maven2
Introduction in Apache Maven2Introduction in Apache Maven2
Introduction in Apache Maven2Heiko Scherrer
 
Maven introduction in Mule
Maven introduction in MuleMaven introduction in Mule
Maven introduction in MuleShahid Shaik
 
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data EverywhereApache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data EverywhereGanesh Raju
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - ExplainedSmita Prasad
 
Learning Maven by Example
Learning Maven by ExampleLearning Maven by Example
Learning Maven by ExampleHsi-Kai Wang
 
Maven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsMaven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsSteve Keener
 
How maven makes your development group look like a bunch of professionals.
How maven makes your development group look like a bunch of professionals.How maven makes your development group look like a bunch of professionals.
How maven makes your development group look like a bunch of professionals.Fazreil Amreen Abdul Jalil
 
PHP Dependency Management with Composer
PHP Dependency Management with ComposerPHP Dependency Management with Composer
PHP Dependency Management with ComposerAdam Englander
 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...Paul Withers
 
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014Continuous Integration Fundamentals: Maven - OFM Canberra July 2014
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014Joelith
 

Similaire à Apache Maven 4.0.0 - The Future (20)

Introduction in Apache Maven2
Introduction in Apache Maven2Introduction in Apache Maven2
Introduction in Apache Maven2
 
Maven introduction in Mule
Maven introduction in MuleMaven introduction in Mule
Maven introduction in Mule
 
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data EverywhereApache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
 
Maven
MavenMaven
Maven
 
Maven Basics - Explained
Maven Basics - ExplainedMaven Basics - Explained
Maven Basics - Explained
 
Maven
MavenMaven
Maven
 
Learning Maven by Example
Learning Maven by ExampleLearning Maven by Example
Learning Maven by Example
 
Maven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable ResultsMaven: Managing Software Projects for Repeatable Results
Maven: Managing Software Projects for Repeatable Results
 
Maven
MavenMaven
Maven
 
How maven makes your development group look like a bunch of professionals.
How maven makes your development group look like a bunch of professionals.How maven makes your development group look like a bunch of professionals.
How maven makes your development group look like a bunch of professionals.
 
Maven
MavenMaven
Maven
 
Maven
MavenMaven
Maven
 
PHP Dependency Management with Composer
PHP Dependency Management with ComposerPHP Dependency Management with Composer
PHP Dependency Management with Composer
 
Maven
MavenMaven
Maven
 
Maven
MavenMaven
Maven
 
Deep Dive into the AOSP
Deep Dive into the AOSPDeep Dive into the AOSP
Deep Dive into the AOSP
 
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
IBM ConnectED 2015 - BP106 From XPages Hero To OSGi Guru: Taking The Scary Ou...
 
Oracle 12c Launch Event 02 ADF 12c and Maven in Jdeveloper / By Aino Andriessen
Oracle 12c Launch Event 02 ADF 12c and Maven in Jdeveloper / By Aino Andriessen Oracle 12c Launch Event 02 ADF 12c and Maven in Jdeveloper / By Aino Andriessen
Oracle 12c Launch Event 02 ADF 12c and Maven in Jdeveloper / By Aino Andriessen
 
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014Continuous Integration Fundamentals: Maven - OFM Canberra July 2014
Continuous Integration Fundamentals: Maven - OFM Canberra July 2014
 
Apache Maven
Apache MavenApache Maven
Apache Maven
 

Dernier

Air breathing and respiratory adaptations in diver animals
Air breathing and respiratory adaptations in diver animalsAir breathing and respiratory adaptations in diver animals
Air breathing and respiratory adaptations in diver animalsaqsarehman5055
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIINhPhngng3
 
Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Chameera Dedduwage
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatmentnswingard
 
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...Sheetaleventcompany
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Vipesco
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lodhisaajjda
 
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedSector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedDelhi Call girls
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfSkillCertProExams
 
If this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaIf this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaKayode Fayemi
 
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Delhi Call girls
 
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
SaaStr Workshop Wednesday w/ Lucas Price, Yardstick
SaaStr Workshop Wednesday w/ Lucas Price, YardstickSaaStr Workshop Wednesday w/ Lucas Price, Yardstick
SaaStr Workshop Wednesday w/ Lucas Price, Yardsticksaastr
 
Causes of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCauses of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCamilleBoulbin1
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar TrainingKylaCullinane
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubssamaasim06
 
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxChiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxraffaeleoman
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoKayode Fayemi
 

Dernier (20)

Air breathing and respiratory adaptations in diver animals
Air breathing and respiratory adaptations in diver animalsAir breathing and respiratory adaptations in diver animals
Air breathing and respiratory adaptations in diver animals
 
ICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdfICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdf
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio III
 
Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)Introduction to Prompt Engineering (Focusing on ChatGPT)
Introduction to Prompt Engineering (Focusing on ChatGPT)
 
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 93 Noida Escorts >༒8448380779 Escort Service
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatment
 
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
No Advance 8868886958 Chandigarh Call Girls , Indian Call Girls For Full Nigh...
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.
 
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedSector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
 
If this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaIf this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New Nigeria
 
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
 
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 97 Noida Escorts >༒8448380779 Escort Service
 
SaaStr Workshop Wednesday w/ Lucas Price, Yardstick
SaaStr Workshop Wednesday w/ Lucas Price, YardstickSaaStr Workshop Wednesday w/ Lucas Price, Yardstick
SaaStr Workshop Wednesday w/ Lucas Price, Yardstick
 
Causes of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCauses of poverty in France presentation.pptx
Causes of poverty in France presentation.pptx
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar Training
 
Presentation on Engagement in Book Clubs
Presentation on Engagement in Book ClubsPresentation on Engagement in Book Clubs
Presentation on Engagement in Book Clubs
 
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxChiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac Folorunso
 

Apache Maven 4.0.0 - The Future

  • 1. Blog: blog.soebes.io Twitter: @khmarbaise Email: maven4@soebes.de Dipl.Ing.(FH) Karl Heinz Marbaise Apache Maven 4.0.0 – The Future
  • 2. www.soebes.com 2 About me ● Apache Maven Committer – since Dec. 2013 ● Apache Maven PMC Member – since August 2014 ● Apache Software Foundation Member – since April 2017 ● Apache Maven Project Chairman – Since April 2022
  • 3. www.soebes.com 3 Agenda ● Apache Maven Ecosystem ● Maven Ecosystem ● Architecture ● Consumer/Build POM ● Timeline ● JDK Requirement ● Questions
  • 4. www.soebes.com 5 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer
  • 5. www.soebes.com 6 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • Core: clean, compiler, resources, install, deploy, surefire, … • Packaging: jar, war, shade, source, jlink, jmod, … • Reporting: site, javadoc, jxr, pmd, jdeps, checkstyl, ... • Tools: archetype, assembly, enforcer, dependency, …
  • 6. www.soebes.com 7 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • ASF Maven Parent • Maven Parent • Maven Plugin Parent • Maven Shared Parent • Maven Skins Parent • Apache Resource Bundle
  • 7. www.soebes.com 8 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • maven-archiver • maven-invoker • maven-filtering • maven-dependency-analyzer • maven-artifact-transfer • maven-jarsigner • maven-shared-utils • maven-shared-io • ...
  • 8. www.soebes.com 9 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • Doxia Core • Doxia Site Tools • Doxia Modules ● apt, xdoc, markdown,FML, … • ...
  • 9. www.soebes.com 10 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • Maven Default Skin • Maven Fluido Skin • Maven Application Skin • Maven Classic Skin • Maven Stylus Skin
  • 10. www.soebes.com 11 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • maven-archetype-j2ee-simple • maven-archetype-plugin • maven-archetype-quickstart • ...
  • 11. www.soebes.com 12 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer • aka Eclipse Aether (2016) http://incubator.apache.org/ip- clearance/maven-aether.html
  • 12. www.soebes.com 13 Apache Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer
  • 13. www.soebes.com 14 Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer Plexus Components (~13) MojoHaus Plugins (~80) • https://github.com/codehaus-plexus https://github.com/codehaus-plexus ● plexus-classworlds ● plexus-modello ● plexus-utils ● plexus-archiver ● plexus-io ● plexus-languages ● Plexus-interpolation ...
  • 14. www.soebes.com 15 Maven Ecosystem Maven Plugins (~50) Maven Core Core ITs Artifact Resolver Maven Shared Components (~25) Doxia Skins Parent POMs Archetypes Indexer Plexus Components (~13) MojoHaus Plugins (~80) • https://github.com/mojohaus/ https://github.com/mojohaus/ ● mrm-maven-plugin ● versions-maven-plugin ● build-helper-maven-plugin ● buildnumber-maven-plugin ● animal-sniffer-maven-plugin ● appassembler-maven-plugin ● jaxb2-maven-plugin ● flatten-maven-plugin ● exec-maven-plugin ● rpm-maven-plugin ● templating-maven-plugin ● ...
  • 19. www.soebes.com 20 Consumer / Build POM POM V4 ● Maven 1 started with the story modelVersion 3.0.0 ● Maven 2/3 has continued the story with modelVersion 4.0.0 <project ...> <modelVersion>4.0.0</modelVersion> … </project>
  • 20. www.soebes.com 21 Consumer / Build POM POM V4 ● The pom declarares the following information: ● dependencies, dependencyManagement ● plugins, pluginManagement ● profiles, repositories ● build, reporting ● distributionManagement ● etc.
  • 21. www.soebes.com 22 Consumer / Build POM POM V4 ● The function of a POM: 1.Serves as declarative description of the build process for a project. 2.Serves as a description of the project dependency graph.
  • 22. www.soebes.com 23 Consumer / Build POM POM V4 ● Changing the POM format? – The POM is consumed by: ● Apache BuildR, Gradle, Apache Ivy, sbt ● by IDE's ● and many other tools – as a description of dependencies.
  • 23. www.soebes.com 24 Consumer / Build POM POM V4 ● Requirements to change the POM format: – All tools would needed to be changed. – We have to fork fork Central Repository.
  • 24. www.soebes.com 25 Consumer / Build POM POM V4 ● Requirements to change the POM format: – All tools would needed to be changed. – We have to fork fork Central Repository.
  • 25. www.soebes.com 26 Consumer / Build POM POM V5 Build Information POM V5+ POM V4 Consumer POM Central Repository Build POM Project Dependency Tree (PDT)
  • 26. www.soebes.com 27 Consumer / Build POM POM V4 ● POM V4 a.k.a. Consumer POM Consumer POM – Contains only dependencies (+ dependencyManagement) – Remove all properties / build / modules / parent / …. – See flatten-maven-plugin ● https://cwiki.apache.org/confluence/display/MAVEN/Build+vs+Consumer+POM
  • 28. www.soebes.com 29 POM V5 → Maven 5.X ● Core must be able to read: – POM V4 – POM V5 ● Core must be able to produce POM V4
  • 29. www.soebes.com 30 Timeline ● Maven 4 – Build/Consumer POM – Reactor Improvements ● Maven 3.X/4.X – Maven Wrapper – Maven Daemon ● https://cwiki.apache.org/confluence/display/MAVEN/Build+vs+Consumer+POM
  • 30. www.soebes.com 31 Minimum JDK Runtime Requirements ● Twitter Poll – 1,841 Votes ● JDK 8 – 16.1 % ● JDK 11 – 36.9 % ● JDK 17 – 43 % ● Version available at time GA – 4 % ● https://twitter.com/khmarbaise/status/1549429653202518016
  • 31. www.soebes.com 32 Minimum JDK Runtime Requirements ● LinkedIn Poll – 3,717 Votes ● JDK 8 – 56 % ● JDK 11 – 27 % ● JDK 17 – 13 % ● Version available at time GA – 5 % ● https://www.linkedin.com/feed/update/urn:li:activity:6955432897084325889
  • 32. www.soebes.com 33 Minimum JDK Runtime Requirements ● Maven 3.8.X – JDK 7 ● Maven 3.9.X (NOT YET!) – JDK 8 ● Maven 4.X (NOT YET!) – actually 8 maybe we change to JDK 11 or even on JDK17; Not sure yet! https://maven.apache.org/docs/history.html
  • 33. www.soebes.com 34 maven4@soebes.com Thank you for your attention. Questions?