Package org.apache.maven.execution
Class AbstractExecutionListener
- java.lang.Object
-
- org.apache.maven.execution.AbstractExecutionListener
-
- All Implemented Interfaces:
ExecutionListener
public class AbstractExecutionListener extends java.lang.Object implements ExecutionListener
Provides a skeleton implementation for execution listeners. The methods of this class are empty.- Author:
- Benjamin Bentmann
-
-
Constructor Summary
Constructors Constructor Description AbstractExecutionListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidforkedProjectFailed(ExecutionEvent event)voidforkedProjectStarted(ExecutionEvent event)voidforkedProjectSucceeded(ExecutionEvent event)voidforkFailed(ExecutionEvent event)voidforkStarted(ExecutionEvent event)voidforkSucceeded(ExecutionEvent event)voidmojoFailed(ExecutionEvent event)voidmojoSkipped(ExecutionEvent event)voidmojoStarted(ExecutionEvent event)voidmojoSucceeded(ExecutionEvent event)voidprojectDiscoveryStarted(ExecutionEvent event)voidprojectFailed(ExecutionEvent event)voidprojectSkipped(ExecutionEvent event)voidprojectStarted(ExecutionEvent event)voidprojectSucceeded(ExecutionEvent event)voidsessionEnded(ExecutionEvent event)voidsessionStarted(ExecutionEvent event)
-
-
-
Method Detail
-
projectDiscoveryStarted
public void projectDiscoveryStarted(ExecutionEvent event)
- Specified by:
projectDiscoveryStartedin interfaceExecutionListener
-
sessionStarted
public void sessionStarted(ExecutionEvent event)
- Specified by:
sessionStartedin interfaceExecutionListener
-
sessionEnded
public void sessionEnded(ExecutionEvent event)
- Specified by:
sessionEndedin interfaceExecutionListener
-
projectSkipped
public void projectSkipped(ExecutionEvent event)
- Specified by:
projectSkippedin interfaceExecutionListener
-
projectStarted
public void projectStarted(ExecutionEvent event)
- Specified by:
projectStartedin interfaceExecutionListener
-
projectSucceeded
public void projectSucceeded(ExecutionEvent event)
- Specified by:
projectSucceededin interfaceExecutionListener
-
projectFailed
public void projectFailed(ExecutionEvent event)
- Specified by:
projectFailedin interfaceExecutionListener
-
forkStarted
public void forkStarted(ExecutionEvent event)
- Specified by:
forkStartedin interfaceExecutionListener
-
forkSucceeded
public void forkSucceeded(ExecutionEvent event)
- Specified by:
forkSucceededin interfaceExecutionListener
-
forkFailed
public void forkFailed(ExecutionEvent event)
- Specified by:
forkFailedin interfaceExecutionListener
-
mojoSkipped
public void mojoSkipped(ExecutionEvent event)
- Specified by:
mojoSkippedin interfaceExecutionListener
-
mojoStarted
public void mojoStarted(ExecutionEvent event)
- Specified by:
mojoStartedin interfaceExecutionListener
-
mojoSucceeded
public void mojoSucceeded(ExecutionEvent event)
- Specified by:
mojoSucceededin interfaceExecutionListener
-
mojoFailed
public void mojoFailed(ExecutionEvent event)
- Specified by:
mojoFailedin interfaceExecutionListener
-
forkedProjectStarted
public void forkedProjectStarted(ExecutionEvent event)
- Specified by:
forkedProjectStartedin interfaceExecutionListener
-
forkedProjectSucceeded
public void forkedProjectSucceeded(ExecutionEvent event)
- Specified by:
forkedProjectSucceededin interfaceExecutionListener
-
forkedProjectFailed
public void forkedProjectFailed(ExecutionEvent event)
- Specified by:
forkedProjectFailedin interfaceExecutionListener
-
-