Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CompoundMojoExecutionListener (0.09 sec)

  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
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

            this.mavenPluginManager = mavenPluginManager;
            this.legacySupport = legacySupport;
            this.scope = scope;
            this.mojoExecutionListener = new CompoundMojoExecutionListener(mojoExecutionListeners);
        }
    
        /**
         * @param plugin
         * @param repositories
         * @param session
         * @return PluginDescriptor The component descriptor for the Maven plugin.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top