mirror of https://github.com/apache/maven.git
add missing @since 3.0.2
This commit is contained in:
parent
e2f99c2ca5
commit
d5259127ed
|
@ -21,6 +21,7 @@ package org.apache.maven.eventspy;
|
|||
|
||||
/**
|
||||
* A skeleton eventspy that does nothing other than helping implementors.
|
||||
* @since 3.0.2
|
||||
*/
|
||||
public abstract class AbstractEventSpy
|
||||
implements EventSpy
|
||||
|
|
|
@ -27,6 +27,7 @@ import java.util.Map;
|
|||
* looks up all implementators of this interface and calls their {@link #init(Context)} method. <em>Note:</em>
|
||||
* Implementors are strongly advised to inherit from {@link AbstractEventSpy} instead of directly implementing this
|
||||
* interface.
|
||||
* @since 3.0.2
|
||||
*/
|
||||
public interface EventSpy
|
||||
{
|
||||
|
|
|
@ -31,6 +31,7 @@ import org.eclipse.aether.RepositoryListener;
|
|||
|
||||
/**
|
||||
* Dispatches callbacks to all registered eventspies.
|
||||
* @since 3.0.2
|
||||
*/
|
||||
@Component( role = EventSpyDispatcher.class )
|
||||
public class EventSpyDispatcher
|
||||
|
|
|
@ -25,6 +25,7 @@ import org.apache.maven.execution.ExecutionListener;
|
|||
|
||||
/**
|
||||
* Forwards execution events to eventspies.
|
||||
* @since 3.0.2
|
||||
*/
|
||||
class EventSpyExecutionListener
|
||||
extends AbstractExecutionListener
|
||||
|
|
|
@ -25,6 +25,7 @@ import org.eclipse.aether.RepositoryListener;
|
|||
|
||||
/**
|
||||
* Forwards repository events to eventspies.
|
||||
* @since 3.0.2
|
||||
*/
|
||||
class EventSpyRepositoryListener
|
||||
extends AbstractRepositoryListener
|
||||
|
|
Loading…
Reference in New Issue