- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for ProfileID (0.09 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
activateAsDefault(profileId); } } /* (non-Javadoc) * @see org.apache.maven.profiles.ProfileManager#explicitlyActivate(java.lang.String) */ public void explicitlyActivate(String profileId) { if (!activatedIds.contains(profileId)) { logger.debug("Profile with id: '" + profileId + "' has been explicitly activated.");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java
dominant.setActiveProfiles(dominantActiveProfiles); } for (String profileId : recessiveActiveProfiles) { if (!dominantActiveProfiles.contains(profileId)) { dominantActiveProfiles.add(profileId); } } } List<String> dominantPluginGroupIds = dominant.getPluginGroups();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
} } boolean optional = false; if (!profileId.isEmpty() && profileId.charAt(0) == '?') { optional = true; profileId = profileId.substring(1); } profileActivation.addProfileActivation(profileId, active, optional);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java
/** * ProfileManager */ @Deprecated public interface ProfileManager { void addProfile(Profile profile); void explicitlyActivate(String profileId); void explicitlyActivate(List<String> profileIds); void explicitlyDeactivate(String profileId); void explicitlyDeactivate(List<String> profileIds); List getActiveProfiles() throws ProfileActivationException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} } boolean optional = false; if (!profileId.isEmpty() && profileId.charAt(0) == '?') { optional = true; profileId = profileId.substring(1); } profileActivation.addProfileActivation(profileId, active, optional);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0)