Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for getExecutionId (0.06 seconds)

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

        public void addMojo(MojoExecution mojo, int priority) {
            if (!skip.get()) {
                mojos.computeIfAbsent(priority, k -> new LinkedHashMap<>())
                        .put(mojo.getGoal() + ":" + mojo.getExecutionId(), mojo);
            }
        }
    
        public void executeAfter(BuildStep stepToExecuteBefore) {
            if (!isSuccessorOf(stepToExecuteBefore)) {
                predecessors.add(stepToExecuteBefore);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Apr 30 16:21:08 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                            }
    
                            MojoExecution forkedExecution =
                                    new MojoExecution(forkedMojoDescriptor, mojoExecution.getExecutionId());
    
                            XmlNode forkedConfiguration = execution.getConfiguration();
    
                            forkedExecution.setConfiguration(forkedConfiguration);
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 26.7K bytes
    - Click Count (0)
Back to Top