- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getEffectiveProperties (0.2 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java
return Collections.unmodifiableMap(new PropertiesAsMap(getMavenSession().getSystemProperties())); } @Nonnull @Override public Map<String, String> getEffectiveProperties(@Nullable Project project) { HashMap<String, String> result = new HashMap<>(getSystemProperties()); if (project != null) { result.putAll(project.getModel().getProperties()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java
return Map.of(); } @Override public Map<String, String> getSystemProperties() { return systemProperties; } @Override public Map<String, String> getEffectiveProperties(Project project) { HashMap<String, String> result = new HashMap<>(getSystemProperties()); if (project != null) { result.putAll(project.getModel().getProperties()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 15.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* needs to be passed) or not. * * @param project {@link Project} or {@code null}. * @return the effective properties, never {@code null} */ @Nonnull Map<String, String> getEffectiveProperties(@Nullable Project project); /** * Returns the current maven version. * * @return the maven version, never {@code null} */ @Nonnull Version getMavenVersion();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0)