- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 36 for userProperties (0.48 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
if (userProperties == null) { userProperties = new Properties(); } return userProperties; } @Override public DefaultModelBuildingRequest setUserProperties(Properties userProperties) { if (userProperties != null) { this.userProperties = new Properties(); this.userProperties.putAll(userProperties); } else {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 9.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java
this.userProperties = userProperties; this.systemProperties = systemProperties; this.startTime = startTime; this.topDirectory = topDirectory; this.rootDirectory = rootDirectory; } public Builder withUserProperties(@Nonnull Map<String, String> userProperties) { this.userProperties = new HashMap<>(userProperties);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 7.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
this.systemProperties = systemProperties; return this; } public ModelBuilderRequestBuilder userProperties(Map<String, String> userProperties) { this.userProperties = userProperties; return this; } public ModelBuilderRequestBuilder repositoryMerging(RepositoryMerging repositoryMerging) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 16.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseInvokerRequest.java
this.cwd = requireNonNull(cwd); this.installationDirectory = requireNonNull(installationDirectory); this.userHomeDirectory = requireNonNull(userHomeDirectory); this.userProperties = requireNonNull(userProperties); this.systemProperties = requireNonNull(systemProperties); this.topDirectory = requireNonNull(topDirectory); this.rootDirectory = rootDirectory;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java
} public Properties getUserProperties() { return userProperties; } public Properties getSystemProperties() { return systemProperties; } public MavenExecutionRequest getRequest() { return request; } public void setUserProperties(Properties properties) { this.userProperties.putAll(properties); } public Path getRootDirectory() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/BaseParserTest.java
Assertions.assertTrue(invokerRequest.options().isPresent()); Assertions.assertTrue(invokerRequest.userProperties().containsKey("foo")); Assertions.assertNotEquals( "${session.rootDirectory}", invokerRequest.userProperties().get("foo")); Assertions.assertFalse(invokerRequest.userProperties().get("foo").trim().isEmpty()); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java
@Override public ProjectBuilderConfiguration setUserProperties(Properties userProperties) { this.userProperties = userProperties; return this; } @Override public Properties getUserProperties() { if (userProperties == null) { userProperties = new Properties(); } return userProperties; } @Override public Properties getExecutionProperties() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
return this; } @Override public MavenExecutionRequest setUserProperties(Properties userProperties) { if (userProperties != null) { this.userProperties = new Properties(); this.userProperties.putAll(userProperties); } else { this.userProperties = null; } return this; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 32.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
return doGet(userProperties, Constants.MAVEN_MAVEN3_PERSONALITY, false); } /** * Check if the consumer POM feature is active. */ public static boolean consumerPom(@Nullable Map<String, ?> userProperties) { return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, !mavenMaven3Personality(userProperties)); } /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 31 11:36:12 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java
public Properties getUserProperties() { if (userProperties == null) { userProperties = new Properties(); } return userProperties; } @Override public DefaultSettingsBuildingRequest setUserProperties(Properties userProperties) { if (userProperties != null) { this.userProperties = 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)