Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executeForkedExecutions (0.16 sec)

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

        }
    
        // Site 3.x
        public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws LifecycleExecutionException {
            return mojoExecutor.executeForkedExecutions(mojoExecution, session);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

            }
    
            return plugin;
        }
    
        public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session) {}
    
        public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) {
            return Collections.emptyList();
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

                        LifecyclePhaseNotFoundException, LifecycleNotFoundException, PluginVersionResolutionException;
    
        // used by the site plugin 3.x
        List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session)
                throws LifecycleExecutionException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top