Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExecutionListener (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultExecutionEventCatapult.java

        }
    
        @Override
        public void fire(
                ExecutionEvent.Type eventType, MavenSession session, MojoExecution mojoExecution, Exception exception) {
            ExecutionListener listener = session.getRequest().getExecutionListener();
    
            if (listener != null) {
                ExecutionEvent event = new DefaultExecutionEvent(eventType, session, mojoExecution, exception);
    
                switch (eventType) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            copy.setWorkspaceReader(original.getWorkspaceReader());
            copy.setNoSnapshotUpdates(original.isNoSnapshotUpdates());
            copy.setExecutionListener(original.getExecutionListener());
            copy.setUseLegacyLocalRepository(original.isUseLegacyLocalRepository());
            copy.setBuilderId(original.getBuilderId());
            copy.setStartInstant(original.getStartInstant());
            return copy;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @return this request
         * @since 4.0.0
         */
        MavenExecutionRequest setInstallationToolchainsFile(File installationToolchainsFile);
    
        ExecutionListener getExecutionListener();
    
        MavenExecutionRequest setExecutionListener(ExecutionListener executionListener);
    
        ProjectBuildingRequest getProjectBuildingRequest();
    
        /**
         * @since 3.1
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top