Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for orderedPhases (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

            Collections.reverse(allPhases);
            List<String> computed =
                    allPhases.stream().filter(s -> !s.startsWith("$")).collect(Collectors.toList());
            List<String> given = lifecycle.orderedPhases().orElse(null);
            if (given != null) {
                if (given.size() != computed.size()) {
                    Set<String> s1 =
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

         */
        Collection<Alias> aliases();
    
        /**
         * Pre-ordered list of phases.
         * If not provided, a default order will be computed.
         */
        default Optional<List<String>> orderedPhases() {
            return Optional.empty();
        }
    
        /**
         * A phase in the lifecycle.
         *
         * A phase is identified by its name. It also contains a list of plugins bound to that phase,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top