Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addEnvVars (0.08 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                if (req != null) {
                    request.setRemoteRepositories(req.getRemoteRepositories());
                }
            } else {
                Properties props = new Properties();
                EnvironmentUtils.addEnvVars(props);
                props.putAll(System.getProperties());
                request.setSystemProperties(props);
            }
    
            return request;
        }
    
        @SuppressWarnings("unchecked")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            // Load environment and system properties
            // ----------------------------------------------------------------------
    
            EnvironmentUtils.addEnvVars(systemProperties);
            SystemProperties.addSystemProperties(systemProperties);
    
            // ----------------------------------------------------------------------
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    && !(e.getCause().getCause() instanceof ArtifactNotFoundException);
        }
    
        private Properties getSystemProperties() {
            Properties props = new Properties();
    
            EnvironmentUtils.addEnvVars(props);
    
            SystemProperties.addSystemProperties(props);
    
            return props;
        }
    
        private static final class ProjectRelocation {
            private MavenProject project;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // Load environment and system properties
            // ----------------------------------------------------------------------
    
            EnvironmentUtils.addEnvVars(systemProperties);
            SystemProperties.addSystemProperties(systemProperties);
    
            // ----------------------------------------------------------------------
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top