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