This is an automated email from the ASF dual-hosted git repository. gnodet pushed a change to branch MNG-8572-di-type-handler in repository https://gitbox.apache.org/repos/asf/maven.git
discard f84c8c4587 [MNG-8572] Support DI beans in build extensions add d777133c0b [MNG-8723] Bump org.eclipse.jetty:jetty-server in /its/core-it-suite (#2305) add 6019307346 RemoveUnusedPrivateMethods (#2310) add 75b6c11d30 [MNG-8686] Add `SourceRoot.matcher(boolean)` method (#2236) add ec56597f9b [MNG-8726] Bump jlineVersion from 3.29.0 to 3.30.0 (#2325) add 0a6cb9a9bb Remove branch after merge add ffd30a39b5 [MNG-8727] Prepare for Java 24 (#2328) add a79fdd3f13 [MNG-8572] Support DI beans in build extensions This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (f84c8c4587) \ N -- N -- N refs/heads/MNG-8572-di-type-handler (a79fdd3f13) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .asf.yaml | 2 + .../main/java/org/apache/maven/api/SourceRoot.java | 31 +- .../repository/legacy/DefaultWagonManagerTest.java | 22 - .../main/java/org/apache/maven/cli/MavenCli.java | 7 - .../plugin/internal/DefaultMavenPluginManager.java | 3 + .../maven/cling/executor/internal/ToolboxTool.java | 2 +- .../org/apache/maven/impl/DefaultSourceRoot.java | 28 +- .../java/org/apache/maven/impl/PathSelector.java | 620 +++++++++++++++++++++ .../model/DefaultLifecycleBindingsInjector.java | 14 - .../org/apache/maven/impl/PathSelectorTest.java | 92 +++ .../java/org/apache/maven/jline/FastTerminal.java | 15 + .../org/apache/maven/internal/xml/XmlNodeImpl.java | 4 - its/core-it-suite/pom.xml | 2 +- .../src/test/resources/mng-7045/pom.xml | 4 +- .../extension/pom.xml | 19 + .../test/resources/mng-7587-jsr330/plugin/pom.xml | 14 + pom.xml | 13 +- 17 files changed, 829 insertions(+), 63 deletions(-) create mode 100644 impl/maven-impl/src/main/java/org/apache/maven/impl/PathSelector.java create mode 100644 impl/maven-impl/src/test/java/org/apache/maven/impl/PathSelectorTest.java