List of usage examples for org.apache.maven.execution ExecutionListener projectSucceeded
void projectSucceeded(ExecutionEvent event);
From source file:com.wielgolaski.maven.profiling.ExecutionListenerChain.java
License:Apache License
public void projectSucceeded(ExecutionEvent event) { for (ExecutionListener listener : listeners) { listener.projectSucceeded(event); }//w ww.j a v a2 s. c om }
From source file:org.eclipse.tycho.core.maven.ChainedExecutionListener.java
License:Open Source License
@Override public void projectSucceeded(ExecutionEvent event) { for (ExecutionListener listener : listeners) { listener.projectSucceeded(event); }//from w w w . j a v a 2 s.com }