Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setupMojoExecution (0.11 seconds)

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

                        LifecyclePhaseNotFoundException, LifecycleNotFoundException, PluginVersionResolutionException;
    
        void setupMojoExecution(
                MavenSession session,
                MavenProject project,
                MojoExecution mojoExecution,
                Set<MojoDescriptor> alreadyPlannedExecutions)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            Set<MojoDescriptor> alreadyPlannedExecutions = fillMojoDescriptors(session, project, mojoExecutions);
    
            for (MojoExecution mojoExecution : mojoExecutions) {
                setupMojoExecution(session, project, mojoExecution, alreadyPlannedExecutions);
            }
        }
    
        private Set<MojoDescriptor> fillMojoDescriptors(
    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