Xhtml Não renderiza de forma alguma

Olá amigos, estou desenvolvendo uma app com o JSF, ja fiz toda a parte de baixo com Spring, JPA, etc.

Mas pela primeira vez quando comecei a criar o front end, as minhas paginas xhtml não são renderizadas.

Utilizo o Richfaces 3.3. Não sei se pode ser alguma configuração do web.xml. Postarei abaixo para que alguem possa me ajudar melhor:

[code]<?xml version=“1.0” encoding=“UTF-8”?>
<web-app xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance
xmlns=“http://java.sun.com/xml/ns/javaee” xmlns:web=“http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd
xsi:schemaLocation=“http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd
id=“WebApp_ID” version=“3.0”>
<display-name>site</display-name>
<welcome-file-list>
<welcome-file>faces/login.xhtml</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>

&lt;!-- Richfaces --&gt;
&lt;!-- Plugging the "Blue Sky" skin into the project --&gt;

&lt;context-param&gt;
   &lt;param-name&gt;org.richfaces.SKIN&lt;/param-name&gt;
   &lt;param-value&gt;blueSky&lt;/param-value&gt;
&lt;/context-param&gt;

&lt;!-- Making the RichFaces skin spread to standard HTML controls --&gt;

&lt;context-param&gt;
      &lt;param-name&gt;org.richfaces.CONTROL_SKINNING&lt;/param-name&gt;
      &lt;param-value&gt;enable&lt;/param-value&gt;
&lt;/context-param&gt;

&lt;!-- Defining and mapping the RichFaces filter --&gt;

&lt;filter&gt; 
   &lt;display-name&gt;RichFaces Filter&lt;/display-name&gt; 
   &lt;filter-name&gt;richfaces&lt;/filter-name&gt; 
   &lt;filter-class&gt;org.ajax4jsf.Filter&lt;/filter-class&gt; 
&lt;/filter&gt; 

&lt;filter-mapping&gt; 
   &lt;filter-name&gt;richfaces&lt;/filter-name&gt; 
   &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;
   &lt;dispatcher&gt;REQUEST&lt;/dispatcher&gt;
   &lt;dispatcher&gt;FORWARD&lt;/dispatcher&gt;
   &lt;dispatcher&gt;INCLUDE&lt;/dispatcher&gt;
&lt;/filter-mapping&gt;

&lt;context-param&gt;
	&lt;param-name&gt;javax.faces.PROJECT_STAGE&lt;/param-name&gt;
	&lt;param-value&gt;Development&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;param-name&gt;javax.servlet.jsp.jstl.fmt.localizationContext&lt;/param-name&gt;
	&lt;param-value&gt;resources.application&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;description&gt;State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2&lt;/description&gt;
	&lt;param-name&gt;javax.faces.STATE_SAVING_METHOD&lt;/param-name&gt;
	&lt;param-value&gt;client&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;param-name&gt;org.apache.myfaces.ALLOW_JAVASCRIPT&lt;/param-name&gt;
	&lt;param-value&gt;true&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;param-name&gt;org.apache.myfaces.PRETTY_HTML&lt;/param-name&gt;
	&lt;param-value&gt;true&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;param-name&gt;org.apache.myfaces.DETECT_JAVASCRIPT&lt;/param-name&gt;
	&lt;param-value&gt;false&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;context-param&gt;
	&lt;param-name&gt;org.apache.myfaces.AUTO_SCROLL&lt;/param-name&gt;
	&lt;param-value&gt;true&lt;/param-value&gt;
&lt;/context-param&gt;
&lt;listener&gt;
	&lt;listener-class&gt;org.apache.myfaces.webapp.StartupServletContextListener&lt;/listener-class&gt;
&lt;/listener&gt;

</web-app>[/code]