- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getInactiveProfileIds (0.22 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java
request.setActiveProfileIds(activeProfileIds); return this; } @Override public List<String> getInactiveProfileIds() { return request.getInactiveProfileIds(); } @Override public FilterModelBuildingRequest setInactiveProfileIds(List<String> inactiveProfileIds) { request.setInactiveProfileIds(inactiveProfileIds);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
*/ @Nonnull List<String> getActiveProfileIds(); /** * List of profile ids that have been explicitly deactivated by the user. */ @Nonnull List<String> getInactiveProfileIds(); /** * Provides a map of system properties. */ @Nonnull Map<String, String> getSystemProperties(); /** * Provides a map of user properties.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
setLocationTracking(request.isLocationTracking()); setProfiles(request.getProfiles()); setActiveProfileIds(request.getActiveProfileIds()); setInactiveProfileIds(request.getInactiveProfileIds()); setSystemProperties(request.getSystemProperties()); setUserProperties(request.getUserProperties()); setBuildStartTime(request.getBuildStartTime());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileSelector.java
Collection<String> activatedIds = new HashSet<>(context.getActiveProfileIds()); Collection<String> deactivatedIds = new HashSet<>(context.getInactiveProfileIds()); List<Profile> activeProfiles = new ArrayList<>(profiles.size()); List<Profile> activePomProfilesByDefault = new ArrayList<>(); boolean activatedPomProfileNotByDefault = false;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.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(); /** * Gets the system properties to use for interpolation and profile activation. The system properties are collected
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
this.activeProfileIds = unmodifiable(activeProfileIds); return this; } @Override public List<String> getInactiveProfileIds() { return inactiveProfileIds; } /** * Sets the identifiers of those profiles that should be deactivated by explicit demand. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
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. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
DefaultProfileActivationContext context = new DefaultProfileActivationContext(); context.setActiveProfileIds(request.getActiveProfileIds()); context.setInactiveProfileIds(request.getInactiveProfileIds()); context.setSystemProperties(request.getSystemProperties()); // enrich user properties with project packaging Properties userProperties = request.getUserProperties();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0)