Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MojoExecutionListener (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

        private final MojoExecutionScope scope;
        private final MojoExecutionListener mojoExecutionListener;
    
        @Inject
        public DefaultBuildPluginManager(
                MavenPluginManager mavenPluginManager,
                LegacySupport legacySupport,
                MojoExecutionScope scope,
                List<MojoExecutionListener> mojoExecutionListeners) {
            this.mavenPluginManager = mavenPluginManager;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    return Collections.emptyList();
                }
            });
    
            final List<String> log = new ArrayList<>();
    
            MojoExecutionListener mojoListener = new MojoExecutionListener() {
                @Override
                public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException {
                    assertNotNull(event.getSession());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top