- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for AbstractExecutionListener (0.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/AbstractExecutionListener.java
* under the License. */ package org.apache.maven.execution; /** * Provides a skeleton implementation for execution listeners. The methods of this class are empty. * */ public class AbstractExecutionListener implements ExecutionListener { @Override public void projectDiscoveryStarted(ExecutionEvent event) { // default does nothing } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilderTest.java
import javax.inject.Inject; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.maven.execution.AbstractExecutionListener; import org.apache.maven.execution.DefaultMavenExecutionRequest; import org.apache.maven.execution.DefaultMavenExecutionResult; import org.apache.maven.execution.MavenExecutionRequest;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyExecutionListener.java
*/ package org.apache.maven.eventspy.internal; import org.apache.maven.execution.AbstractExecutionListener; import org.apache.maven.execution.ExecutionEvent; import org.apache.maven.execution.ExecutionListener; /** * Forwards execution events to EventSpies. * @since 3.0.2 */ class EventSpyExecutionListener extends AbstractExecutionListener { private final EventSpyDispatcher dispatcher;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java
* under the License. */ package org.apache.maven.lifecycle.internal.stub; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.maven.execution.AbstractExecutionListener; import org.apache.maven.execution.DefaultMavenExecutionRequest; import org.apache.maven.execution.DefaultMavenExecutionResult; import org.apache.maven.execution.MavenExecutionRequest;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ExecutionListener.java
* Maven versions to support further events. Hence it is strongly recommended to derive custom listeners from * {@link AbstractExecutionListener} in order to avoid interoperability problems. * */ public interface ExecutionListener { void projectDiscoveryStarted(ExecutionEvent event); void sessionStarted(ExecutionEvent event);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0)