Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setForkedExecutions (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            this.mojoDescriptor = mojoDescriptor;
        }
    
        public Map<String, List<MojoExecution>> getForkedExecutions() {
            return forkedExecutions;
        }
    
        public void setForkedExecutions(String projectKey, List<MojoExecution> forkedExecutions) {
            this.forkedExecutions.put(projectKey, forkedExecutions);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

                }
    
                // This List can be empty when the executions are already present in the plan
                if (!forkedExecutions.isEmpty()) {
                    mojoExecution.setForkedExecutions(BuilderCommon.getKey(forkedProject), forkedExecutions);
                }
            }
        }
    
        private List<MojoExecution> calculateForkedLifecycle(
                MojoExecution mojoExecution,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
Back to top