unit.addToAttachmentList( PoolMetaData.ATTACHMENTS_KEY, poolMetaData );
}
String forceConnectorStart = System.getProperty( "org.torquebox.web.force_http_connector_start", "false" );
if (Boolean.parseBoolean( forceConnectorStart )) {
HttpConnectorStartService webStartService = new HttpConnectorStartService();
phaseContext.getServiceTarget().addService( WebServices.WEB_CONNECTOR_START, webStartService )
.addDependency( CoreServices.runtimeStartPoolName( unit, "web" ) )
.addDependency( CoreServices.serviceRegistryName( unit ), ServiceRegistry.class, webStartService.getServiceRegistryInjector() )
.install();
}
}