Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mojoStarted (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java

            // default does nothing
        }
    
        @Override
        public void mojoSkipped(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void mojoStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void mojoSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

        }
    
        private void doExecute2(MavenSession session, MojoExecution mojoExecution) throws LifecycleExecutionException {
            eventCatapult.fire(ExecutionEvent.Type.MojoStarted, session, mojoExecution);
            try {
                try {
                    pluginManager.executeMojo(session, mojoExecution);
                } catch (MojoFailureException
                        | PluginManagerException
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 12 14:55:55 UTC 2025
    - 21K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

         *
         * @param event the execution event
         */
        private void processEvent(ExecutionEvent event) {
            MavenProject project = event.getProject();
            switch (event.getType()) {
                case MojoStarted:
                    String phase = event.getMojoExecution().getLifecyclePhase();
                    if (phase != null) {
                        Deque<String> phases = getLifecycles(project);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
Back to top