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