Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for userHomeDirectory (0.06 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                parserRequest.logger().error("Error determining installation directory", e);
            }
            try {
                context.userHomeDirectory = getUserHomeDirectory(context);
            } catch (Exception e) {
                context.parsingFailed = true;
                context.userHomeDirectory = context.cwd;
                parserRequest.logger().error("Error determining user home directory", e);
            }
    
            // top/root
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java

            // Mock all required properties for LookupContext constructor
            when(request.cwd()).thenReturn(workingDirectory);
            when(request.installationDirectory()).thenReturn(Paths.get("/maven"));
            when(request.userHomeDirectory()).thenReturn(Paths.get("/home/user"));
            when(request.topDirectory()).thenReturn(workingDirectory);
            when(request.rootDirectory()).thenReturn(Optional.empty());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top