- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for copyProperties (0.61 sec)
-
impl/maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java
public static Properties getSystemProperties() { return copyProperties(System.getProperties()); } /** * Copies the given {@link Properties} object into a new {@link Properties} object, in a thread-safe manner. * @param properties Properties to copy. * @return Copy of the given properties. */ public static Properties copyProperties(Properties properties) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java
} @Override public ProjectBuildingRequest setSystemProperties(Properties systemProperties) { if (systemProperties != null) { this.systemProperties = SystemProperties.copyProperties(systemProperties); } else { this.systemProperties.clear(); } return this; } @Override public Properties getUserProperties() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 9.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
return this; } @Override public MavenExecutionRequest setSystemProperties(Properties properties) { if (properties != null) { this.systemProperties = SystemProperties.copyProperties(properties); } else { this.systemProperties = 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)