Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MojoExecutorStub (0.07 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/MojoExecutorStub.java

    import org.apache.maven.project.MavenProject;
    
    /**
     */
    public class MojoExecutorStub extends MojoExecutor { // This is being lazy instead of making interface
    
        protected final List<MojoExecution> executions = Collections.synchronizedList(new ArrayList<>());
    
        public MojoExecutorStub() {
            super(null, null, null, null, null, null);
        }
    
        public MojoExecutorStub(
                BuildPluginManager pluginManager,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilderTest.java

        @Inject
        PlexusContainer container;
    
        @Test
        void testCurrentProject() throws Exception {
            List<MavenProject> currentProjects = new ArrayList<>();
            MojoExecutorStub mojoExecutor = new MojoExecutorStub() {
                @Override
                public void execute(MavenSession session, List<MojoExecution> mojoExecutions)
                        throws LifecycleExecutionException {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/BuildPluginManagerStub.java

            return null;
        }
    
        @Override
        public MojoDescriptor getMojoDescriptor(
                Plugin plugin, String goal, List<RemoteRepository> repositories, RepositorySystemSession session) {
            return MojoExecutorStub.createMojoDescriptor(plugin);
        }
    
        @Override
        public ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor) {
            return null;
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top