Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addEnvVars (0.06 sec)

  1. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 25 12:03:50 UTC 2025
    - 30.4K 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);
            systemProperties.putAll(context.systemPropertiesOverrides);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  3. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top