List of usage examples for org.apache.maven.execution ExecutionListener projectFailed
void projectFailed(ExecutionEvent event);
From source file:com.wielgolaski.maven.profiling.ExecutionListenerChain.java
License:Apache License
public void projectFailed(ExecutionEvent event) { for (ExecutionListener listener : listeners) { listener.projectFailed(event); } }
From source file:org.eclipse.tycho.core.maven.ChainedExecutionListener.java
License:Open Source License
@Override public void projectFailed(ExecutionEvent event) { for (ExecutionListener listener : listeners) { listener.projectFailed(event); }// ww w . ja va 2s . co m }