- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 30 for setSystemProperties (0.06 sec)
-
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
request.setLocalRepository(getLocalRepository()); // native Properties properties = new Properties(); properties.setProperty("maven.resolver.transport", "apache"); request.setSystemProperties(properties); Map<String, Object> configProperties = systemSessionFactory.newRepositorySession(request).getConfigProperties();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 19.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java
if (systemProperties == null) { systemProperties = new Properties(); } return systemProperties; } @Override public DefaultSettingsBuildingRequest setSystemProperties(Properties systemProperties) { if (systemProperties != null) { this.systemProperties = new Properties();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
if (session != null) { configuration.setSystemProperties(session.getSystemProperties()); configuration.setUserProperties(session.getUserProperties()); } else { configuration.setSystemProperties(getSystemProperties()); configuration.setUserProperties(new Properties());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 12:03:50 UTC 2025 - 30.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
settingsRequest.setProjectSettingsFile(projectSettingsFile); settingsRequest.setUserSettingsFile(userSettingsFile); settingsRequest.setSystemProperties(cliRequest.getSystemProperties()); Properties props = cliRequest.getUserProperties(); if (cliRequest.getRootDirectory() != null) { props = new Properties();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 19 18:49:57 UTC 2025 - 12K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
.setRemoteRepositories(request.getRemoteRepositories()) .setPluginArtifactRepositories(request.getPluginArtifactRepositories()) .setSystemProperties(executionProperties) .setUserProperties(new Properties()); initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
.setRemoteRepositories(request.getRemoteRepositories()) .setPluginArtifactRepositories(request.getPluginArtifactRepositories()) .setSystemProperties(executionProperties) .setUserProperties(new Properties()); initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 12.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
DefaultProfileActivationContext context = new DefaultProfileActivationContext(); context.setActiveProfileIds(activatedIds); context.setInactiveProfileIds(deactivatedIds); context.setSystemProperties(System.getProperties()); context.setUserProperties(requestProperties); final List<ProfileActivationException> errors = new ArrayList<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.9K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
* * @param systemProperties The system properties, may be {@code null}. * @return This request, never {@code null}. */ SettingsBuildingRequest setSystemProperties(Properties systemProperties); /** * Gets the user properties to use for interpolation. The user properties have been configured directly by the userRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java
* * @param systemProperties The system properties, may be {@code null}. * @return This request, never {@code null}. */ ProjectBuildingRequest setSystemProperties(Properties systemProperties); /** * Gets the system properties to use for interpolation and profile activation. The system properties are collectedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java
throws CycleDetectedException, DuplicateProjectException, NoLocalRepositoryManagerException { MavenExecutionRequest request = new DefaultMavenExecutionRequest() .setSystemProperties(properties) .setGoals(Collections.emptyList()) .setBaseDirectory(new File("")) .setLocalRepository(repo); DefaultRepositorySystemSession repositorySession =Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 19.3K bytes - Viewed (0)