// workaround for tycho projects that have maven-bundle-plugin enabled for them
ListIterator<AbstractProjectConfigurator> li = configurators.listIterator();
while ( li.hasNext() )
{
AbstractProjectConfigurator configurator = li.next();
if ( configurator instanceof MavenBundlePluginConfigurator
|| configurator instanceof PDEMavenBundlePluginConfigurator )
{
li.remove();
}