Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRequiredInactiveProjectSelectors (0.34 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

            return getProjectSelectors(pa -> pa.optional() && pa.active());
        }
    
        /**
         * @return Required inactive project selectors, never {@code null}.
         */
        public Set<String> getRequiredInactiveProjectSelectors() {
            return getProjectSelectors(pa -> !pa.optional() && !pa.active());
        }
    
        /**
         * @return Optional inactive project selectors, never {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 11 16:38:19 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            performProjectActivation(
                    parser.parse(options, new String[] {"-pl", "!test1,-test2,-?test3,!?test4"}), activation);
            assertContainsExactlyInAnyOrder(activation.getRequiredInactiveProjectSelectors(), "test1", "test2");
            assertContainsExactlyInAnyOrder(activation.getOptionalInactiveProjectSelectors(), "test3", "test4");
    
            activation = new ProjectActivation();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            projectActivation.getActivations().stream()
                    .filter(pa -> pa.activationSettings().active())
                    .forEach(pas -> {});
    
            Set<String> requiredSelectors = projectActivation.getRequiredInactiveProjectSelectors();
            Set<String> optionalSelectors = projectActivation.getOptionalInactiveProjectSelectors();
            if (!requiredSelectors.isEmpty() || !optionalSelectors.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)
Back to top