// check for updates of web.xml and faces-config descriptors
// only if project state is not production
if(!facesContext.isProjectStage(ProjectStage.Production))
{
WebXml.update(facesContext.getExternalContext());
new FacesConfigurator(facesContext.getExternalContext()).update();
}
PhaseListenerManager phaseListenerMgr = new PhaseListenerManager(this, facesContext, getPhaseListeners());
for (PhaseExecutor executor : lifecycleExecutors)
{