- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for addEnvVars (0.05 sec)
-
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 Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0) -
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) -
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) -
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)