- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for executeForkedExecutions (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
} // Site 3.x @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) throws LifecycleExecutionException { return mojoExecutor.executeForkedExecutions(mojoExecution, session); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java
public void execute(MavenSession session, List<MojoExecution> mojoExecutions) throws LifecycleExecutionException { executions.addAll(mojoExecutions); } @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) throws LifecycleExecutionException { return null; } public static MojoDescriptor createMojoDescriptor(Plugin plugin) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
} return plugin; } @Override public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session) {} @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) { return Collections.emptyList(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.5K bytes - Viewed (0) -
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 Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
} return plugin; } @Override public void calculateForkedExecutions(MojoExecution mojoExecution, MavenSession session) {} @Override public List<MavenProject> executeForkedExecutions(MojoExecution mojoExecution, MavenSession session) { return Collections.emptyList(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java
throws LifecycleExecutionException { MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor(); List<MavenProject> forkedProjects = executeForkedExecutions(mojoExecution, session); try (NoExceptionCloseable lock = getProjectLock(session, mojoDescriptor)) { ensureDependenciesAreResolved(mojoDescriptor, session, dependencyContext);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 12 14:55:55 UTC 2025 - 21K bytes - Viewed (0)