Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for CompoundMojoExecutionListener (0.11 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/plugin/CompoundMojoExecutionListener.java

    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    
    class CompoundMojoExecutionListener implements MojoExecutionListener {
    
        private final Collection<MojoExecutionListener> listeners;
    
        CompoundMojoExecutionListener(Collection<MojoExecutionListener> listeners) {
            this.listeners = listeners; // NB this is live injected collection
        }
    
        @Override
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 1.9K bytes
    - Click Count (0)
Back to Top