Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for executeBefore (0.06 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildStep.java

            if (!isSuccessorOf(stepToExecuteBefore)) {
                predecessors.add(stepToExecuteBefore);
                stepToExecuteBefore.successors.add(this);
            }
        }
    
        public void executeBefore(BuildStep stepToExecuteAfter) {
            stepToExecuteAfter.executeAfter(this);
        }
    
        public Stream<MojoExecution> executions() {
            return mojos.values().stream().flatMap(m -> m.values().stream());
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Apr 30 16:21:08 GMT 2025
    - 4.9K bytes
    - Click Count (0)
Back to Top