Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for user_homeDirectory (0.23 sec)

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

            this.parserRequest = requireNonNull(parserRequest);
            this.cwd = requireNonNull(cwd);
            this.installationDirectory = requireNonNull(installationDirectory);
            this.userHomeDirectory = requireNonNull(userHomeDirectory);
            this.userProperties = requireNonNull(userProperties);
            this.systemProperties = requireNonNull(systemProperties);
            this.topDirectory = requireNonNull(topDirectory);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvokerRequest.java

        @SuppressWarnings("ParameterNumber")
        public DefaultEncryptInvokerRequest(
                ParserRequest parserRequest,
                Path cwd,
                Path installationDirectory,
                Path userHomeDirectory,
                Map<String, String> userProperties,
                Map<String, String> systemProperties,
                Path topDirectory,
                Path rootDirectory,
                InputStream in,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvokerRequest.java

        @SuppressWarnings("ParameterNumber")
        public DefaultMavenInvokerRequest(
                ParserRequest parserRequest,
                Path cwd,
                Path installationDirectory,
                Path userHomeDirectory,
                Map<String, String> userProperties,
                Map<String, String> systemProperties,
                Path topDirectory,
                Path rootDirectory,
                InputStream in,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenInvokerRequest.java

        @SuppressWarnings("ParameterNumber")
        public DefaultForkedMavenInvokerRequest(
                ParserRequest parserRequest,
                Path cwd,
                Path installationDirectory,
                Path userHomeDirectory,
                Map<String, String> userProperties,
                Map<String, String> systemProperties,
                Path topDirectory,
                Path rootDirectory,
                InputStream in,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                this.parserRequest = parserRequest;
                this.systemPropertiesOverrides = new HashMap<>();
            }
    
            public Path cwd;
            public Path installationDirectory;
            public Path userHomeDirectory;
            public Map<String, String> systemProperties;
            public Map<String, String> userProperties;
            public Path topDirectory;
    
            @Nullable
            public Path rootDirectory;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptParser.java

            return new DefaultEncryptInvokerRequest(
                    context.parserRequest,
                    context.cwd,
                    context.installationDirectory,
                    context.userHomeDirectory,
                    context.userProperties,
                    context.systemProperties,
                    context.topDirectory,
                    context.rootDirectory,
                    context.parserRequest.in(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenParser.java

            return new DefaultMavenInvokerRequest<>(
                    context.parserRequest,
                    context.cwd,
                    context.installationDirectory,
                    context.userHomeDirectory,
                    context.userProperties,
                    context.systemProperties,
                    context.topDirectory,
                    context.rootDirectory,
                    context.parserRequest.in(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenParser.java

            return new DefaultForkedMavenInvokerRequest(
                    context.parserRequest,
                    context.cwd,
                    context.installationDirectory,
                    context.userHomeDirectory,
                    context.userProperties,
                    context.systemProperties,
                    context.topDirectory,
                    context.rootDirectory,
                    context.parserRequest.in(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

        /**
         * Returns the user's home directory.
         * This is typically obtained from the "user.home" system property.
         *
         * @return the user's home directory path
         */
        @Nonnull
        Path userHomeDirectory();
    
        /**
         * Returns a map of user-defined properties for the Maven execution.
         * These properties can be set using the -D command-line option.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 17 08:06:47 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                        .resolve(s)
                        .normalize()
                        .toAbsolutePath();
                this.userResolver = s ->
                        invokerRequest.userHomeDirectory().resolve(s).normalize().toAbsolutePath();
                this.logger = invokerRequest.parserRequest().logger();
    
                Map<String, String> user = new HashMap<>(invokerRequest.userProperties());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top