Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for getActivation (0.35 sec)

  1. 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()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. 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();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. 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.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top