4.0.0-rc-6
Pre-releaseNotes
This new release candidate of Maven 4 is released to get feedback from users.
Maven 4 has restricted a few things compared to Maven 3, so make sure to run the mvnup tool before trying your project with Maven 4.
Issues fixed since RC-5
All known issues reported in the RC-5 release notes have been fixed:
- Bean configuration bug — field accessibility state was cached globally, causing plugin configuration injection failures. Fixed in #11433.
- Concurrency issue in the v4 API — a
ConcurrentModificationExceptionwas fixed in #11429. - BOM packaging — consumer POM conversion for BOM projects now correctly preserves dependency versions. Fixed in #11464.
- macOS Gatekeeper — the extracted JLine native binaries that triggered Gatekeeper have been removed from the distribution (#11997). The
xattrworkaround from RC-5 is no longer needed.
Known compatibility issues
The following are known compatibility issues when using Maven 4. Running
mvnup before building with
Maven 4 will fix many common plugin version issues automatically. The issues
below are those that require manual intervention or upstream fixes.
Stricter POM validation
Maven 4 enforces stricter validation than Maven 3. Projects may need to fix their POMs:
- Duplicate XML elements — duplicate
<artifactId>,<properties>, etc. are now rejected (Duplicated tagerror). Fix the source POM. - Duplicate dependency declarations — same
groupId:artifactIddeclared twice is now rejected (must be unique). - Uninterpolated expressions —
${...}expressions in repository URLs, distribution management IDs, and other fields that Maven 3 silently accepted are now rejected. - Invalid XML in transitive POMs — illegal processing instructions or undeclared namespace prefixes in transitive POMs cause
Non-parseable POMerrors. - Properties in
<module>paths — Maven 4 no longer interpolates properties like${spark.version}in<module>elements at POM reading time. - CI-friendly versions — projects using
${revision}withoutflatten-maven-pluginmay hit missing dependency version errors. - Invalid Collect Request — transitive dependencies with uninterpolated
${...}version expressions are rejected.
Transitive dependency resolution changes
Maven 4's TransitiveDependencyManager applies dependencyManagement at all transitive depths (Maven 3 only applied it at the first level). This is intentional but can change resolved versions:
- Dependencies previously on the classpath may disappear — add explicit declarations. See #12302.
maven-enforcer-pluginversion rules may trigger due to downgraded transitive versions.license-maven-pluginmay report new transitive dependencies not in the allow-list.- Karaf feature verification may fail due to OSGi bundle version mismatches.
Plugin and extension compatibility
Some plugins and extensions require specific versions for Maven 4:
- Quarkus — versions before 3.20 use
ServiceLocator/RepositorySystempatterns incompatible with Maven 4's Sisu-based DI. Upgrade to Quarkus 3.20+. - Tycho — versions before 5.0 use Guice/Sisu injection patterns broken by Maven 4. Upgrade to Tycho 5.0.3+.
- Develocity Maven extension — fails to initialize due to SLF4J classloading changes (
ClassNotFoundException: SimpleLogger). - pgpverify-maven-plugin — versions before 1.20 hit a
ClassCastExceptionwith Maven 4's resolver. See resolver#1957. - cyclonedx-maven-plugin — fails with
Invalid Version Range Requestwhen using${revision}CI-friendly versions. - maven-site-plugin — Velocity template rendering may fail with incompatible site plugin versions.
- maven-shade-plugin —
dependency-reduced-pom.xmlcan causeThe parents form a cycleerror. - commons-release-plugin —
clean-stagingfails under Maven 4.
Classloading changes
- Plugins relying on Maven 3's classrealm layout may encounter "foreign imports" errors (e.g., Quarkus, JAXB plugins).
- Maven 4's prefix-based repository routing may block artifacts not matching
/.meta/prefixes.txt.
Post-mvnup formatting
- spotless-maven-plugin and sortpom-maven-plugin may report formatting violations after
mvnupmodifies POM files. Re-run the formatter aftermvnup.
Other
- Broken upstream POMs — e.g.,
hadoop-project3.1.0–3.3.0 has invalid XML (<Xlint:-unchecked/>) causing parse errors. These need upstream fixes tracked in HADOOP-19923. - Enforcer POM element ordering — Maven 4's model builder reorders POM elements into a canonical order, which can break enforcer rules checking element ordering.
- SNAPSHOT handling — SNAPSHOT artifacts may show as "present, but unavailable" under Maven 4's different resolver metadata handling.
🚀 New features and improvements
- Backport the use of hardlink instead of file copy (#11564) @desruisseaux
- Accept Java module names as attached artifactId even if they differ from the project's artifactId (#11573) @desruisseaux
- Add module-aware resource handling for modular sources (#11700) @desruisseaux
- [MNG-8507] - Reduce allocation pressure in model building pipeline (#12540) @gnodet
- [Backport 4.0.x] Fix #12530: add mvnup upgrade strategies for Maven 4 known compatibility issues (#12560) @gnodet
- Introduce validation control (#12548) @cstamas
- Backport #12505: mvnup: widen exact Maven version pins to allow Maven 4 (#12508) @gnodet
- [MNG-5913] - Allow defining aliases for existing server configurations in settings.xml (#12473) @slawekjaranowski
- Backport #12454: mvnup upgrade strategies and compatibility improvements (#12467) @gnodet
- In failed build limit reactor summary to only failed modules (#12469) @slawekjaranowski
- [Backport 4.0.x] Add mvnup SourceStrategy for migrating to
elements (#12357) @gnodet - [Backport 4.0.x][#12353] Add jaxb2-maven-plugin to mvnup plugin upgrade list (#12356) @gnodet
- [Backport 4.0.x] Switch default resolver transport from JDK/methanol to Apache HttpClient (#12341) @gnodet
- Feat: Pull out maven-executor into its own project (#12004) (#12186) @cstamas
- [maven-4.0.x] Add maven-surefire-report-plugin to PluginUpgradeStrategy (#12114) @gnodet
- [maven-4.0.x] Fix #12087: add surefire and failsafe plugins to PluginUpgradeStrategy (#12109) @gnodet
- Backport: Maven Executor Fixes (#11987) @cstamas
- Promote java version in JavaToolchain (#11971) @slawekjaranowski
- Add time zone to Maven startup banner (#11781) @slawekjaranowski
- Update formatting of prerequisites-requirements error to improve readability (#11525) @slawekjaranowski
🐛 Bug Fixes
- [MNG-8425] Fix mvnenc init saving invalid master source configuration (#12564) @gnodet
- Consumer POM of multi-module project should exclude and elements (#11764) @desruisseaux
- Fix #12045: fix mvnup plugin upgrade strategy for inherited plugins from remote parent POMs (#12054) @gnodet
- Backport #12538: Handle Ctrl+C on Windows terminals (#12550) @gnodet
- [Backport 4.0.x] Fix #12531: filter NO_REPOSITORY sentinel from mapped exceptions in ArtifactResolverResult (#12561) @gnodet
- [Backport 4.0.x] Fix #12534: Wire up @after annotation processing in Maven core (#12566) @gnodet
- [Backport 4.0.x] Fix #12427: Reject path-traversal segments in coordinate ids and versions (#12565) @gnodet
- [Backport 4.0.x] [MNG-11147] - Fix BOM version inference for sibling modules in dependencyManagement (#12569) @gnodet
- Backport #12523 to 4.0.x: preserve unresolved ${...} in CLI -D values (#12524) @ascheman
- [Backport 4.0.x] Avoid IllegalStateException on duplicate profile ids in DefaultModelBuilder (#12506) @ascheman
- Backport #12446: Fix deadlock in AbstractRequestCache (#12468) @gnodet
- Fix #12464: Skip MAVEN_ARGS for non-default main classes (backport to 4.0.x) (#12466) @gnodet
- Bugfix: use GAV and not GAPV in source labels for profiles (#12406) (#12424) @cstamas
- [#11449] Fix Mockito agent: use late binding @{} interpolation (backport to 4.0.x) (#12415) @gnodet
- Make LookupContext#closeables thread safe (backport to 4.0.x) (#12414) @gnodet
- [#11683] Install JUL-to-SLF4J bridge to route java.util.logging through Maven logging (#12345) @gnodet
- [#12303] Fix CI-friendly ${revision} not interpolated for non-build POM reads (#12322) @gnodet
- [4.0.x] Fix mvn.cmd jvm.config read failing silently on Windows CI (#12379) @gnodet
- [Backport 4.0.x] Fix mvnup spurious pluginManagement injection for remote parent plugins (#12351) @gnodet
- [MNG-8650] - Fix MAVEN_ARGS backslash stripping on Windows (#12349) @gnodet
- Port #11908: Do not force metadata download for plugin prefix resolution (#11905) (#12343) @gnodet
- [Backport 4.0.x] Fix NPE in DefaultLookup.lookupOptional() when container returns null (#12340) @gnodet
- [#12301] Use stack-passed Set for activeModelReads cycle detection (#12325) @gnodet
- [Backport 4.0.x] Sync DefaultTypeProvider and dependency-types docs across impl and compat (#12326) @gnodet
- [#12301] Fix StackOverflowError with internal parent and CI-friendly revision (#12314) @gnodet
- [Backport 4.0.x] [#12288] Add -P !profile deactivation regression guard (#12298) (#12315) @gnodet
- [maven-4.0.x] Fix #12305: filter uninterpolated deps in ArtifactDescriptorReaderDelegate (#12309) @gnodet
- [maven-4.0.x] Fix #12304: replace deprecated property expressions in mvnup (#12308) @gnodet
- [maven-4.0.x] Fix #12306: normalize targetPath in DefaultSourceRoot (#12307) @gnodet
- [Backport 4.0.x] [#12288] Pass settings.xml profile properties to LRM (#12299) @gnodet
- Fix thread-safety in DefaultModelValidator (backport to 4.0.x) (#12284) @gnodet
- Fix MojoExtension.beforeEach to use merged model instead of raw parsed model (backport to 4.0.x) (#12287) @gnodet
- Fix BUILD_CONSUMER profile activation for locally-resolved parent POMs (backport to 4.0.x) (#12286) @gnodet
- Fix NPE in DefaultModelBuilder when POM resolved from repository (backport to 4.0.x) (#12285) @gnodet
- Backport #12053: Tokenize arithmetic operators as delimiters in ConditionParser (#12275) @gnodet
- Backport #12117: Support sealed parameter implementation hints (#12258) @gnodet
- Backport #12038: Fix ConditionParser to handle newlines before && operator (#12259) @gnodet
- Backport #12146: Handle missing package metadata in model ids (#12257) @gnodet
- Backport #11742: Fix #11715: preserve 4.1.0 namespace/schema in help:effective-pom (#12255) @gnodet
- Backport #12237: Add XmlService classloader fallback for ServiceLoader discovery (#12254) @gnodet
- Avoid reflective InputSource modelId mutation (#12147) @Will-thom
- Fix MavenITConsumerPomBomFromSettingsRepoTest missing super constructor call (#12253) @gnodet
- fix reportSet inheritance in Maven 4 model building (#12245) @hboutemy
- [4.0.x] [GH-11772] - Fail-fast consumer POM validation for non-4.0.0 model versions (#12236) @gnodet
- [4.0.x] Fix Source.targetPath incorrectly aligned to basedir (#12235) @gnodet
- [4.0.x] Fix #11856: Improve error message for prefix-based remote repository filtering errors (#12234) @gnodet
- [4.0.x] Fix #11796: Preserve default-phases bindings for standard lifecycle phases (#12233) @gnodet
- [4.0.x] Fix @PreDestroy ClassNotFoundException from premature ClassRealm disposal (#12232) @gnodet
- [4.0.x] [MNG-6772] - Re-enable integration test for nested import scope repository override (#12231) @gnodet
- Fix deadlocks in request cache (unstable hashCode, re-entrant self-deadlock, mutable properties) (#12166) @gnodet
- [maven-4.0.x] Backport bug fixes from #11741 and #11733 (#12144) @gnodet
- [backport maven-4.0.x] Fix logging setup/teardown order (#12137) @gnodet
- Fix domtrip API breakage after 1.5.1 upgrade (#12138) @gnodet
- Update binary distribution LICENSE with complete Apache License 2.0 text (#12116) @slawekjaranowski
- Fix #11899: Default addLocationInformation to false in Settings and Toolchains XML writers (#12123) @gnodet
- [maven-4.0.x] Fix mvn script expanding ${...} in CLI arguments (#12095) @gnodet
- [maven-4.0.x] Fix consumer POM serialization of prefixed XML attributes (fixes #11760) (#12110) @gnodet
- Fix #11885: Disable ANSI colors when stdout is piped on JDK 22+ (backport) (#12111) @gnodet
- [maven-4.0.x] Fix #12085: regression tests for version inheritance from remote parent (#12101) @gnodet
- Fix #12074: prevent false parent cycle with shade plugin's dependency-reduced-pom.xml (#12079) @gnodet
- Fix #12075: skip expression validation for distributionManagement repository IDs (#12076) (#12077) @gnodet
- [maven-4.0.x] fix: restore buildConfiguration() callback in deprecated build() methods (#12094) @gnodet
- [maven-4.0.x] fix: propagate addResource() to model Build for Maven 3 compat (#12093) @gnodet
- [maven-4.0.x] Filter transitive repositories with uninterpolated IDs (#12049) (#12070) @gnodet
- Downgrade plexus-classworlds from 2.11.0 to 2.9.0 (#12092) @gnodet
- [maven-4.0.x] Fix #11920: skip expression validation for profile repository URLs (#12055) @gnodet
- Mvn4: Remove extracted Mac OS JLine binaries from Maven distro (#11997) @kwin
- Fixes issue #11827 - Maven DI crashes if the file org.apache.maven.api.di.Inject contains empty lines (#11830) @slawekjaranowski
- Backport the simplification and fixes of PathSelector (#11565) @desruisseaux
- [maven-4.0.x] Fix special characters in .mvn/jvm.config (fix #11363, #11485 and #11486) (#11365) (#11537) @gnodet
- Improve DefaultModelProcessor error reporting for alternative parsers (#11529) @gnodet
- Allow ${project.basedir} in profile activation.condition (#11528) @gnodet
- [maven-4.0.x] Fix profile source tracking in multi-module projects (fixes #11409) (#11440) (#11466) @gnodet
- [maven-4.0.x] Fix BOM packaging in consumer POMs (#11427) (#11464) @gnodet
- [maven-4.0.x] Fix field accessibility leak in EnhancedCompositeBeanHelper (#11425) (#11433) @gnodet
- Fix a
ConcurrentModificationException(#11429) @desruisseaux
📝 Documentation updates
- [Backport 4.0.x] Fix Javadoc about default value of consumer POM flattening (#12562) @gnodet
- [Backport 4.0.x] [ISSUE-10329] - Document behaviour of UrlNormalizer (#12296) @gnodet
- Add deprecation Javadoc to XmlNode constants and methods (backport #11576) (#12295) @gnodet
- [Backport 4.0.x] Update lifecycles reference to point to LifecycleRegistry (#12292) @gnodet
- [Backport 4.0.x] Document deprecation rationale for Artifact version constants (#12290) @gnodet
- fix doc cross references (#12273) @hboutemy
- document modelVersion supported values (#11810) @hboutemy
- [maven-4.0.x] improve align in dependency graph (#12015) @hboutemy
- document supported values: 4.0.0 and 4.1.0 (#11957) @hboutemy
- clarify repository vs deployment repository (#11491) @hboutemy
- fix javadoc group packages (#11455) @hboutemy
- update links (#11452) @hboutemy
- adapt documentatiion directories (#11450) @hboutemy
- add maintained branches (#11447) @hboutemy
- improve dependency graph rendering (#11445) @hboutemy
👻 Maintenance
- Add DefaultLookupTest for lookupOptional NPE fix (#12385) @ascheman
- [Backport 4.0.x] [MNG-8425] - Fix mvnenc init saving invalid master source configuration (#12564) @gnodet
- push-to-atr profile for source+binaries in apache-maven subproject (#12448) @hboutemy
- configure ATR project (#12449) @hboutemy
- Forward-port #11985: remove redundant required MDO attrs (#11979) (#12347) @gnodet
- Forward port Maven 3.10.0 PluginDependenciesResolver changes (#12335) @cstamas
- [Backport 4.0.x] Move model SPI interfaces from maven-impl to maven-api-spi (#12289) @gnodet
- Deprecate testing classes in org.apache.maven.api, add new ones in org.apache.maven.testing (#12277) @gnodet
- Backport #12256: Centralize XXE hardening for StAX XML parsers (#12269) @gnodet
- Refactor JUnit extensions to avoid using static fields. (#12202) @slawekjaranowski
- [4.0.x] Fix mvnup effective model analysis for CI-friendly parent versions (#12230) @gnodet
- [4.0.x] Filter project repos with uninterpolated property expressions (#12229) @gnodet
- [4.0.x] Bump exec-maven-plugin target to 3.5.0 and fix PLUGIN_UPGRADES inconsistencies (#12228) @gnodet
- [4.0.x] Use request properties consistently for CI-friendly version interpolation (#12227) @gnodet
- [4.0.x] Bump scala-maven-plugin upgrade target from 4.9.2 to 4.9.5 (#12226) @gnodet
- [4.0.x] Fix mvnup PLUGIN_UPGRADES for compiler and exec plugins (#12225) @gnodet
- [4.0.x] Remove invalid combine.self and combine.children attributes in mvnup (#12224) @gnodet
- [4.0.x] Fix mvnup plugin upgrade for versions locked by parent build/plugins (#12223) @gnodet
- [4.0.x] Fix mvnup: use effective model to resolve properties from remote parents (#12222) @gnodet
- [4.0.x] Fix mvnup recommending non-existent maven-enforcer-plugin:3.5.2 (#12156) @gnodet
- [maven-4.0.x] Fix #12080: mvnup - comment out dependencies with undefined property expressions (#12099) @gnodet
- [maven-4.0.x] Fix incompatible extensions in mvnup for Maven 4 (#12122) @gnodet
- [maven-4.0.x] Upgrade more plugins in mvnup PluginUpgradeStrategy (#12121) @gnodet
- [maven-4.0.x] Fix mvnup to replace deprecated ${basedir} in repository URLs (#12106) @gnodet
- [maven-4.0.x] Fix #12086: filter transitive repos and deps with uninterpolated expressions (#12098) @gnodet
- [maven-4.0.x] Filter transitive dependencies with uninterpolated expressions (#12097) @gnodet
- [maven-4.0.x] Upgrade plugin dependencies (extra-enforcer-rules) in mvnup (#12108) @gnodet
- Backport bug fixes from master to maven-4.0.x (batch 2) (#12107) @gnodet
- [maven-4.0.x] Use maven-api Version for mvnup plugin version comparison (#12073) @gnodet
- Fix #12081: mvnup: use domtrip XML API on 4.0.x branch to align with master (#12082) @gnodet
- [maven-4.0.x] Backport bug fixes from master to maven-4.0.x (#12091) @gnodet
- chore: delete junit3 reference (#11771) @sparsick
- Maven Parent 46 (#11637) (#11638) @cstamas
- [4.0.x] Use Mimir mirror feature (#11622) (#11631) @cstamas
- Add InputLocation/InputSource factory methods and make classes final for 4.0.0-rc-6 (#11538) @gnodet
- Use full version for GitHub action in comments (#11482) @slawekjaranowski
📦 Dependency updates
- [4.0.x] Bump Sisu to 1.1.0 and fix extension realm visibility for JSR330 filtering (#12556) @gnodet
- Bump apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml from 4 to 5 (#12490) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.38 to 1.6.0 (#12526) @dependabot[bot]
- Bump resolverVersion from 2.0.21-SNAPSHOT to 2.0.21 (#12544) @dependabot[bot]
- Deps: Bump to Resolver 2.0.21 (#12516) @cstamas
- Bump actions/checkout from 7.0.0 to 7.0.1 (#12513) @dependabot[bot]
- Bump actions/setup-java from 5.5.0 to 5.6.0 (#12500) @dependabot[bot]
- Bump apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml from 4 to 5 (#12491) @dependabot[bot]
- Bump apache/maven-gh-actions-shared/.github/workflows/stale.yml from 4 to 5 (#12493) @dependabot[bot]
- Bump actions/setup-java from 5.4.0 to 5.5.0 (#12437) @dependabot[bot]
- Bump domtripVersion from 1.5.2 to 1.6.0 (#12452) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.37 to 1.5.38 (#12458) @dependabot[bot]
- Bump resolverVersion from 2.0.18 to 2.0.20 (#12425) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.10 to 1.18.11 (#12413) @dependabot[bot]
- Bump jlineVersion from 4.2.1 to 4.3.1 (#12408) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.25.0 to 7.26.0 (#12404) @dependabot[bot]
- Bump actions/cache/restore from 6.0.0 to 6.1.0 (#12395) @dependabot[bot]
- Bump actions/cache/save from 6.0.0 to 6.1.0 (#12393) @dependabot[bot]
- Bump org.apache:apache from 38 to 39 (#12398) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.36 to 1.5.37 (#12397) @dependabot[bot]
- Bump org.apache.maven:maven-parent from 48 to 49 (#12396) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.35 to 1.5.36 (#12376) @dependabot[bot]
- Bump actions/setup-java from 5.3.0 to 5.4.0 (#12373) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.34 to 1.5.35 (#12361) @dependabot[bot]
- Bump sisuVersion from 1.0.0 to 1.0.1 (#12368) @dependabot[bot]
- Bump actions/cache from 5.0.5 to 6.0.0 (#12359) @dependabot[bot]
- Bump actions/checkout from 6.0.3 to 7.0.0 (#12319) @dependabot[bot]
- Bump jlineVersion from 4.1.3 to 4.2.1 (#12282) @dependabot[bot]
- Bump actions/setup-java from 5.2.0 to 5.3.0 (#12280) @dependabot[bot]
- Bump org.apache.maven.executor:maven-executor from 1.0.0-SNAPSHOT to 1.0.0 (#12268) @dependabot[bot]
- [4.0.x] Deps: Maven Executor 1.0.0 released; use it (#12265) @cstamas
- Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.12.0 (#12193) @dependabot[bot]
- Bump com.fasterxml.woodstox:woodstox-core from 7.2.0 to 7.2.1 (#12248) @dependabot[bot]
- Bump org.jacoco:jacoco-maven-plugin from 0.8.14 to 0.8.15 (#12249) @dependabot[bot]
- Bump jlineVersion from 4.1.2 to 4.1.3 (#12194) @dependabot[bot]
- Bump actions/checkout from 6.0.2 to 6.0.3 (#12209) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.33 to 1.5.34 (#12210) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.8 to 1.18.10 (#12211) @dependabot[bot]
- Bump xmlunitVersion from 2.11.0 to 2.12.0 (#12195) @dependabot[bot]
- Bump domtripVersion from 1.5.1 to 1.5.2 (#12196) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.24.0 to 7.25.0 (#12197) @dependabot[bot]
- Bump jlineVersion from 4.1.0 to 4.1.2 (#12161) @dependabot[bot]
- Bump asmVersion from 9.10 to 9.10.1 (#12163) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.32 to 1.5.33 (#12170) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.7 to 0.26.1 (#12171) @dependabot[bot]
- Bump jlineVersion from 4.1.0 to 4.1.2 (#12151) @dependabot[bot]
- Bump asmVersion from 9.10 to 9.10.1 (#12152) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.7 to 0.26.0 (#12142) @dependabot[bot]
- Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.11.4 (#12067) @dependabot[bot]
- Bump domtripVersion from 0.4.1 to 1.5.1 (#12131) @dependabot[bot]
- Bump jlineVersion from 4.0.14 to 4.1.0 (#12018) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-classworlds from 2.9.0 to 2.12.0 (#12132) @dependabot[bot]
- Resolver 2018 (#12112) (#12133) @cstamas
- Bump org.apache.maven.reporting:maven-reporting-exec from 2.0.0 to 2.0.1 (#12066) @dependabot[bot]
- Bump com.fasterxml.woodstox:woodstox-core from 7.1.1 to 7.2.0 (#12126) @dependabot[bot]
- Bump asmVersion from 9.9.1 to 9.10 (#12059) @dependabot[bot]
- Bump slf4jVersion from 2.0.17 to 2.0.18 (#12043) @dependabot[bot]
- Bump org.apache.maven:maven-parent from 47 to 48 (#12029) @dependabot[bot]
- Bump org.apache:apache from 37 to 38 (#12030) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-classworlds from 2.9.0 to 2.11.0 (#12040) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.5 to 0.25.7 (#12021) @dependabot[bot]
- Bump jlineVersion from 4.0.13 to 4.0.14 (#12002) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.23.0 to 7.24.0 (#11989) @dependabot[bot]
- Bump jlineVersion from 4.0.12 to 4.0.13 (#11993) @dependabot[bot]
- Bump commons-io:commons-io from 2.21.0 to 2.22.0 (#11981) @dependabot[bot]
- Bump com.google.guava:guava from 33.5.0-jre to 33.6.0-jre (#11952) @dependabot[bot]
- Bump actions/cache from 5.0.4 to 5.0.5 (#11944) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.4 to 0.25.5 (#11945) @dependabot[bot]
- Bump jlineVersion from 4.0.10 to 4.0.12 (#11914) @dependabot[bot]
- Bump eu.maveniverse.maven.plugins:bom-builder3 from 1.3.2 to 1.3.3 (#11915) @dependabot[bot]
- Bump actions/upload-artifact from 7.0.0 to 7.0.1 (#11933) @dependabot[bot]
- Bump jlineVersion from 4.0.9 to 4.0.10 (#11884) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.22.0 to 7.23.0 (#11866) @dependabot[bot]
- Bump org.codehaus.woodstox:stax2-api from 4.2.2 to 4.3.0 (#11872) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.7 to 1.18.8 (#11873) @dependabot[bot]
- Bump actions/cache from 5.0.3 to 5.0.4 (#11814) @dependabot[bot]
- Bump jlineVersion from 3.30.6 to 4.0.9 (#11832) @dependabot[bot]
- Bump org.codehaus.mojo:extra-enforcer-rules from 1.11.0 to 1.12.0 (#11804) @dependabot[bot]
- Bump actions/download-artifact from 8.0.0 to 8.0.1 (#11791) @dependabot[bot]
- Bump mockitoVersion from 5.22.0 to 5.23.0 (#11794) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.21.0 to 7.22.0 (#11755) @dependabot[bot]
- Bump actions/download-artifact from 7.0.0 to 8.0.0 (#11749) @dependabot[bot]
- Bump actions/upload-artifact from 6.0.0 to 7.0.0 (#11750) @dependabot[bot]
- Bump mockitoVersion from 5.21.0 to 5.22.0 (#11754) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.5 to 1.18.7 (#11756) @dependabot[bot]
- Bump resolverVersion from 2.0.14 to 2.0.16 (#11738) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.31 to 1.5.32 (#11728) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.29 to 1.5.31 (#11719) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.4 to 1.18.5 (#11720) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.28 to 1.5.29 (#11710) @dependabot[bot]
- Bump sisuVersion from 0.9.0.M4 to 1.0.0 (#11708) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.27 to 1.5.28 (#11707) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.26 to 1.5.27 (#11697) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.20.0 to 7.21.0 (#11698) @dependabot[bot]
- Bump org.assertj:assertj-core from 3.27.6 to 3.27.7 (#11679) @dependabot[bot]
- Bump actions/cache from 5.0.2 to 5.0.3 (#11689) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.25 to 1.5.26 (#11677) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-xml from 4.1.0 to 4.1.1 (#11678) @dependabot[bot]
- Bump actions/checkout from 6.0.1 to 6.0.2 (#11668) @dependabot[bot]
- Bump actions/setup-java from 5.1.0 to 5.2.0 (#11669) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.24 to 1.5.25 (#11661) @dependabot[bot]
- Bump org.codehaus.mojo:buildnumber-maven-plugin from 3.2.1 to 3.3.0 (#11662) @dependabot[bot]
- Bump actions/cache from 5.0.1 to 5.0.2 (#11660) @dependabot[bot]
- Bump org.apache.maven:maven-parent from 46 to 47 (#11648) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.3 to 1.18.4 (#11653) @dependabot[bot]
- Bump org.apache:apache from 36 to 37 (#11649) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.2 to 0.25.4 (#11644) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.23 to 1.5.24 (#11627) @dependabot[bot]
- Bump org.apache:apache from 35 to 36 (#11630) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.19.0 to 7.20.0 (#11614) @dependabot[bot]
- Bump org.apache.maven:maven-archiver from 3.6.5 to 3.6.6 (#11601) @dependabot[bot]
- Bump eu.maveniverse.maven.plugins:bom-builder3 from 1.3.1 to 1.3.2 (#11598) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.2 to 1.18.3 (#11591) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.25.0 to 0.25.1 (#11592) @dependabot[bot]
- Bump org.codehaus.mojo:exec-maven-plugin from 3.6.2 to 3.6.3 (#11593) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.22 to 1.5.23 (#11594) @dependabot[bot]
- Bump org.ow2.asm:asm from 9.9 to 9.9.1 (#11572) @dependabot[bot]
- [4.0.x] Maven 4.0.x w/ Resolver 2.0.14 (#11530) @cstamas
- Bump actions/upload-artifact from 5.0.0 to 6.0.0 (#11559) @dependabot[bot]
- Bump actions/cache from 5.0.0 to 5.0.1 (#11560) @dependabot[bot]
- Bump actions/download-artifact from 6.0.0 to 7.0.0 (#11561) @dependabot[bot]
- Bump actions/cache from 4.3.0 to 5.0.0 (#11543) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.21 to 1.5.22 (#11544) @dependabot[bot]
- Bump eu.maveniverse.maven.mimir:testing from 0.10.4 to 0.10.5 (#11418) @dependabot[bot]
- Bump mockitoVersion from 5.20.0 to 5.21.0 (#11535) @dependabot[bot]
- Bump actions/setup-java from 5.0.0 to 5.1.0 (#11520) @dependabot[bot]
- Bump actions/checkout from 6.0.0 to 6.0.1 (#11513) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-testing from 2.0.1 to 2.0.2 (#11514) @dependabot[bot]
- Bump net.sourceforge.pmd:pmd-core from 7.18.0 to 7.19.0 (#11508) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.18.1 to 1.18.2 (#11497) @dependabot[bot]
- Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.24.2 to 0.25.0 (#11484) @dependabot[bot]
- Bump actions/upload-artifact from 4.6.2 to 5.0.0 (#11383) @dependabot[bot]
- Bump actions/checkout from 5.0.1 to 6.0.0 (#11477) @dependabot[bot]
- Bump actions/checkout from 5.0.0 to 5.0.1 (#11459) @dependabot[bot]
- Bump net.bytebuddy:byte-buddy from 1.17.8 to 1.18.1 (#11460) @dependabot[bot]
- Bump ch.qos.logback:logback-classic from 1.5.20 to 1.5.21 (#11461) @dependabot[bot]
- Bump commons-cli:commons-cli from 1.10.0 to 1.11.0 (#11462) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-interactivity-api from 1.4 to 1.5.1 (#11420) @dependabot[bot]
- Bump commons-io:commons-io from 2.20.0 to 2.21.0 (#11419) @dependabot[bot]
- Bump eu.maveniverse.maven.plugins:bom-builder3 from 1.3.0 to 1.3.1 (#11421) @dependabot[bot]
- Bump org.codehaus.plexus:plexus-interpolation from 1.28 to 1.29 (#11422) @dependabot[bot]