Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for MojosExecutionStrategy (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                ExecutionEventCatapult eventCatapult,
                Provider<MojosExecutionStrategy> mojosExecutionStrategy,
                MessageBuilderFactory messageBuilderFactory) {
            super(
                    pluginManager,
                    mavenPluginManager,
                    lifeCycleDependencyResolver,
                    eventCatapult,
                    mojosExecutionStrategy,
                    messageBuilderFactory);
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.2K bytes
    - Click Count (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

                ExecutionEventCatapult eventCatapult,
                Provider<MojosExecutionStrategy> mojosExecutionStrategy,
                MessageBuilderFactory messageBuilderFactory) {
            super(
                    pluginManager,
                    mavenPluginManager,
                    lifeCycleDependencyResolver,
                    eventCatapult,
                    mojosExecutionStrategy,
                    messageBuilderFactory);
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultMojosExecutionStrategy.java

    /**
     * Default mojo execution strategy. It just iterates over mojo executions and runs one by one
     */
    @Named
    @Singleton
    public class DefaultMojosExecutionStrategy implements MojosExecutionStrategy {
        @Override
        public void execute(List<MojoExecution> mojos, MavenSession session, MojoExecutionRunner mojoRunner)
                throws LifecycleExecutionException {
            for (MojoExecution mojoExecution : mojos) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.5K bytes
    - Click Count (0)
Back to Top