- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for setSystemProperties (0.1 seconds)
-
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<>();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 12.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
copy.setGoals(original.getGoals()); copy.setRecursive(original.isRecursive()); copy.setPom(original.getPom()); copy.setSystemProperties(original.getSystemProperties()); copy.setUserProperties(original.getUserProperties()); copy.setShowErrors(original.isShowErrors()); copy.setActiveProfiles(original.getActiveProfiles());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
* * @param systemProperties The system properties, may be {@code null}. * @return This request, never {@code null}. */ ModelBuildingRequest setSystemProperties(Properties systemProperties); /** * Gets the user properties to use for interpolation and profile activation. The user properties have beenCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 12.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
* * @param systemProperties The system properties, may be {@code null}. * @return This request, never {@code null}. */ MavenExecutionRequest setSystemProperties(Properties systemProperties); /** * Gets the system properties to use for interpolation and profile activation. The system properties are collectedCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 18.6K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
request.setLocalRepository(configuration.getLocalRepository()); request.setBuildStartTime(configuration.getBuildStartTime()); request.setUserProperties(configuration.getUserProperties()); request.setSystemProperties(configuration.getExecutionProperties()); ProfileManager profileManager = configuration.getGlobalProfileManager(); if (profileManager != null) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.2K bytes - Click Count (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());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 25 12:03:50 GMT 2025 - 30.4K bytes - Click Count (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();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 19 18:49:57 GMT 2025 - 12K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
// This merge is on purpose because otherwise user properties would override model // properties in dependencies the user does not know. See MNG-7563 for details. modelRequest.setSystemProperties( toProperties(session.getUserProperties(), session.getSystemProperties())); modelRequest.setUserProperties(new Properties());Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 17.1K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
} private ModelBuildingRequest createModelBuildingRequest(Properties p) { ModelBuildingRequest config = new DefaultModelBuildingRequest(); if (p != null) { config.setSystemProperties(p); } return config; } @Test public void testDefaultBuildTimestampFormatShouldFormatTimeIn24HourFormat() { Calendar cal = Calendar.getInstance();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 18.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
finalConfigProperties.putAll(mergedProps); finalConfigProperties.putAll(configProps); sessionBuilder.setUserProperties(request.getUserProperties()); sessionBuilder.setSystemProperties(request.getSystemProperties()); sessionBuilder.setConfigProperties(finalConfigProperties); return sessionBuilder; } private Path resolve(String string) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Mar 19 13:42:58 GMT 2026 - 25.8K bytes - Click Count (0)