This is an automated email from the ASF dual-hosted git repository. olamy pushed a change to branch jenkinsfile-mimir in repository https://gitbox.apache.org/repos/asf/maven.git
omit 656e08debe test mimir with Jenkinsfile add cf0354805a [CI] Make maven-cli module tests use Mimir as well (#2207) add 3c6b91b883 Access static fields in a static way (#2209) add 257598aee2 [CI] Disable Mimir JGroups node (#2212) add d0c7b65dfb [MNG-8668] Bump net.bytebuddy:byte-buddy from 1.17.4 to 1.17.5 (#2214) add 4f33ed4a08 isEmpty (#2215) add 335ba3941c [MNG-4559] Fix .mvn/jvm.config parsing with spaces, quotes and comments (#2213) add ec98e0dd13 [MNG-8662] Add missing methods for removing project source roots (#2205) add 8a8d71b24e [MNG-8669] Add missing context (#2224) add 5426073a36 [MNG-3558] Ensure properties can be escaped (#2206) add 9797418895 Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 (#2225) add 8feec28461 test mimir with Jenkinsfile add 0ecf7416a0 build with 4.0.0-rc3, mimir extension in user home 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 (656e08debe) \ N -- N -- N refs/heads/jenkinsfile-mimir (0ecf7416a0) 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: .../{dependabot.yml => ci-mimir-daemon.properties} | 22 +------- .github/workflows/maven.yml | 6 ++ Jenkinsfile | 4 +- apache-maven/src/assembly/maven/bin/mvn | 51 ++++++++++++----- apache-maven/src/assembly/maven/bin/mvn.cmd | 31 +++++++++-- .../AbstractArtifactResolutionException.java | 4 +- .../cling/invoker/mvn/MavenInvokerTestSupport.java | 2 + .../maven/cling/invoker/mvn/MimirInfuser.java | 50 +++++++++++++++++ .../org/apache/maven/project/MavenProject.java | 65 +++++++++++++++++++--- .../maven/AbstractCoreMavenComponentTestCase.java | 2 +- .../cling/executor/MavenExecutorTestSupport.java | 1 + .../apache/maven/cling/executor/MimirInfuser.java | 54 ++++++++++++++++++ .../maven/cling/executor/impl/ToolboxToolTest.java | 7 +++ .../test/resources-filtered/ut-mimir.properties | 2 +- .../apache/maven/impl/DefaultArtifactResolver.java | 1 + .../maven/impl/model/DefaultInterpolatorTest.java | 5 +- .../maven/api/di/testing/MavenDIExtension.java | 8 +-- ...ava => MavenITmng3558PropertyEscapingTest.java} | 37 ++++++------ ...java => MavenITmng4559MultipleJvmArgsTest.java} | 41 +++++++------- ...java => MavenITmng4559SpacesInJvmOptsTest.java} | 32 +++++------ .../maven/it/MavenITmng6255FixConcatLines.java | 13 +++-- .../org/apache/maven/it/TestSuiteOrdering.java | 3 + .../pom.xml | 55 +++++++++--------- .../resources/mng-4559-multiple-jvm-args/pom.xml | 58 +++++++++++++++++++ .../mng-4559-spaces-jvm-opts/.mvn/jvm.config | 2 + .../resources/mng-4559-spaces-jvm-opts/pom.xml | 59 ++++++++++++++++++++ pom.xml | 4 +- 27 files changed, 467 insertions(+), 152 deletions(-) copy .github/{dependabot.yml => ci-mimir-daemon.properties} (69%) create mode 100644 impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MimirInfuser.java create mode 100644 impl/maven-executor/src/test/java/org/apache/maven/cling/executor/MimirInfuser.java copy its/core-it-suite/src/test/resources-filtered/it-mimir.properties => impl/maven-executor/src/test/resources-filtered/ut-mimir.properties (74%) copy its/core-it-suite/src/test/java/org/apache/maven/it/{MavenITmng0848UserPropertyOverridesDefaultValueTest.java => MavenITmng3558PropertyEscapingTest.java} (50%) copy its/core-it-suite/src/test/java/org/apache/maven/it/{MavenITmng4544ActiveComponentCollectionThreadSafeTest.java => MavenITmng4559MultipleJvmArgsTest.java} (52%) copy its/core-it-suite/src/test/java/org/apache/maven/it/{MavenITmng3621UNCInheritedPathsTest.java => MavenITmng4559SpacesInJvmOptsTest.java} (59%) copy its/core-it-suite/src/test/resources/{mng-3719 => mng-3558-property-escaping}/pom.xml (57%) create mode 100644 its/core-it-suite/src/test/resources/mng-4559-multiple-jvm-args/pom.xml create mode 100644 its/core-it-suite/src/test/resources/mng-4559-spaces-jvm-opts/.mvn/jvm.config create mode 100644 its/core-it-suite/src/test/resources/mng-4559-spaces-jvm-opts/pom.xml