This is an automated email from the ASF dual-hosted git repository.
cstamas pushed a commit to branch maven-4.0.x
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/maven-4.0.x by this push:
new b7d21263fe Missed parts for Mimir update (#11312) (#11313)
b7d21263fe is described below
commit b7d21263fe7baae921381158af4c070e2225e244
Author: Tamas Cservenak <[email protected]>
AuthorDate: Tue Oct 21 14:56:04 2025 +0200
Missed parts for Mimir update (#11312) (#11313)
Fix build when mimir is not used. Disable cache purge for now; still
Windows issues
Backport of ec8d98cdf7924dd580f8420c35b5656c440ad3f2
---
.github/ci-mimir-daemon.properties | 5 +++--
.../org/apache/maven/cling/executor/MavenExecutorTestSupport.java | 2 --
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/.github/ci-mimir-daemon.properties
b/.github/ci-mimir-daemon.properties
index 04b30055d3..a03c6571d8 100644
--- a/.github/ci-mimir-daemon.properties
+++ b/.github/ci-mimir-daemon.properties
@@ -19,5 +19,6 @@
# Pre-seed itself
mimir.daemon.preSeedItself=true
-mimir.file.exclusiveAccess=true
-mimir.file.cachePurge=ON_BEGIN
\ No newline at end of file
+# OFF for now; Windows issues
+# mimir.file.exclusiveAccess=true
+# mimir.file.cachePurge=ON_BEGIN
\ No newline at end of file
diff --git
a/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/MavenExecutorTestSupport.java
b/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/MavenExecutorTestSupport.java
index b322f23f46..eb672c71e4 100644
---
a/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/MavenExecutorTestSupport.java
+++
b/impl/maven-executor/src/test/java/org/apache/maven/cling/executor/MavenExecutorTestSupport.java
@@ -60,8 +60,6 @@ void beforeEach(TestInfo testInfo) throws Exception {
userHome =
tempDir.resolve(testInfo.getTestMethod().orElseThrow().getName())
.resolve("home");
Files.createDirectories(userHome);
- MimirInfuser.infuseUW(userHome);
- MimirInfuser.preseedItselfIntoInnerUserHome(userHome);
System.out.println("=== " +
testInfo.getTestMethod().orElseThrow().getName());
}