c.addTagLibrary(new JstlCoreLibrary());
c.addTagLibrary(new JstlCoreLibrary("http://java.sun.com/jstl/core"));
c.addTagLibrary(new JstlCoreLibrary("http://xmlns.jcp.org/jsp/jstl/core"));
c.addTagLibrary(new PassThroughAttributeLibrary());
c.addTagLibrary(new PassThroughElementLibrary());
c.addTagLibrary(new FunctionLibrary(JstlFunction.class, "http://java.sun.com/jsp/jstl/functions"));
c.addTagLibrary(new FunctionLibrary(JstlFunction.class, "http://xmlns.jcp.org/jsp/jstl/functions"));
if (isDevModeEnabled()) {
c.addTagLibrary(new FunctionLibrary(DevTools.class, "http://java.sun.com/mojarra/private/functions"));
c.addTagLibrary(new FunctionLibrary(DevTools.class, "http://xmlns.jcp.org/mojarra/private/functions"));
}
c.addTagLibrary(new CompositeLibrary());
c.addTagLibrary(new CompositeLibrary("http://xmlns.jcp.org/jsf/composite"));
return c;