Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for forkStarted (0.07 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/execution/AbstractExecutionListener.java

            // default does nothing
        }
    
        @Override
        public void projectFailed(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void forkStarted(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
        public void forkSucceeded(ExecutionEvent event) {
            // default does nothing
        }
    
        @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            Map<String, List<MojoExecution>> forkedExecutions = mojoExecution.getForkedExecutions();
    
            if (!forkedExecutions.isEmpty()) {
                eventCatapult.fire(ExecutionEvent.Type.ForkStarted, session, mojoExecution);
    
                MavenProject project = session.getCurrentProject();
    
                forkedProjects = new ArrayList<>(forkedExecutions.size());
    
                try {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
Back to Top