- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for deactivated (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
} /** * Mark a profile as required and deactivated. * @param id The identifier of the profile. */ public void deactivateRequiredProfile(String id) { this.activations.put(id, ActivationSettings.deactivated()); } /** * Mark a profile as optional and deactivated. * @param id The identifier of the profile. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 5.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* @param activationSettings describes how/when to active or deactivate the project */ public record ProjectActivationSettings(String selector, ActivationSettings activationSettings) {} /** * List of activated and deactivated projects. */ private final List<ProjectActivationSettings> activations = new ArrayList<>();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 7.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
*/ package org.apache.maven.execution; /** * Describes whether a target should be activated or not, and if that is required or optional. * * @param active Should the target be active? * @param optional Should the build continue if the target is not present? * @param recurse Should the target be activated and its children be activated? */ public record ActivationSettings(boolean active, boolean optional, boolean recurse) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java
* Gets the identifiers of those profiles that should be activated by explicit demand. * * @return The identifiers of those profiles to activate, never {@code null}. */ List<String> getActiveProfileIds(); /** * Gets the identifiers of those profiles that should be deactivated by explicit demand. * * @return The identifiers of those profiles to deactivate, never {@code null}. */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
// Use SLF4J formatter for consistency with warnings reported by logger final String message = MessageFormatter.format( "The requested profiles {} could not be activated or deactivated because they do not" + " exist.", notFoundRequiredProfiles) .getMessage();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon May 05 16:58:52 GMT 2025 - 28.7K bytes - Click Count (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
/** * Gets the identifiers of those profiles that should be deactivated by explicit demand. * * @return The identifiers of those profiles to deactivate, never {@code null}. */ List<String> getInactiveProfileIds(); /** * Sets the identifiers of those profiles that should be deactivated by explicit demand. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 12.8K bytes - Click Count (0) -
.github/workflows/stale-pr.yml
runs-on: ubuntu-latest steps: - uses: actions/stale@v10 with: operations-per-run: 50 ascending: true exempt-all-milestones: true # ISSUES (deactivated) ---------------------------------------------- # This workflow should touch no issues, so times are set to -1 # (see actions/stale documentation for the behavior) days-before-issue-stale: -1Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Sep 04 22:13:29 GMT 2025 - 1.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
public List<String> getInactiveProfileIds() { return inactiveProfileIds; } /** * Sets the identifiers of those profiles that should be deactivated by explicit demand. * * @param inactiveProfileIds The identifiers of those profiles to deactivate, may be {@code null}. * @return This context, never {@code null}. */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 7.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
*/ @Override public void explicitlyDeactivate(String profileId) { if (!deactivatedIds.contains(profileId)) { logger.debug("Profile with id: '" + profileId + "' has been explicitly deactivated."); deactivatedIds.add(profileId); } } /* (non-Javadoc) * @see org.apache.maven.profiles.ProfileManager#explicitlyDeactivate(java.util.List) */ @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.9K bytes - Click Count (0) -
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();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 16.3K bytes - Click Count (0)