- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getProfiles (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
/** * Defines external profiles that may be activated for the given model. * Those are external profiles usually defined in {@link org.apache.maven.api.settings.Settings#getProfiles()}. */ @Nonnull Collection<Profile> getProfiles(); /** * List of profile ids that have been explicitly activated by the user. */ @Nonnull List<String> getActiveProfileIds(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 20:54:22 UTC 2025 - 16.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
List<Profile> getActivePomProfiles(); /** * Gets the external profiles that were active during model building. External profiles are those that were * contributed by {@link ModelBuilderRequest#getProfiles()}. * * @return The active external profiles or an empty list if none, never {@code null}. */ @Nonnull List<Profile> getActiveExternalProfiles(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
public java.util.Map<String, Profile> getProfilesAsMap() { if (profileMap == null) { profileMap = new java.util.LinkedHashMap<String, Profile>(); if (getProfiles() != null) { for (Profile profile : getProfiles()) { profileMap.put(profile.getId(), profile); } } } return profileMap; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0)