- Sort Score
- Num 10 results
- Language All
Results 21 - 23 of 23 for getActivation (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
if (!requiredSelectors.isEmpty() || !optionalSelectors.isEmpty()) { Set<MavenProject> selectedProjects = projectSelector.getActiveProjects(request, allSortedProjects, projectActivation.getActivations()); // it can be empty when an optional project is missing from the reactor, fallback to returning all projects if (!selectedProjects.isEmpty()) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 18.5K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/DefaultProfileSelectorTest.java
public class DefaultProfileSelectorTest { private Profile newProfile(String id) { Activation activation = new Activation(); Profile profile = new Profile(); profile.setId(id); profile.setActivation(activation); return profile; } @Test void testThrowingActivator() { DefaultProfileSelector selector = new DefaultProfileSelector();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
/** * List of activated and deactivated projects. */ private final List<ProjectActivationSettings> activations = new ArrayList<>(); public List<ProjectActivationSettings> getActivations() { return Collections.unmodifiableList(activations); } /** * Adds a project activation to the request. * @param selector The selector of the project.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)