Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for orderedPhases (0.2 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

         */
        Collection<Phase> phases();
    
        /**
         * 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.
         */
        interface Phase {
            String name();
    
            List<Plugin> plugins();
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top