Problemas pra configurar o RichFaces [ Resolvido ]

Pessoal

Estou com problemas pra configurar o RichFaces.

A RI que estou usando é a da SUN JSF 1.1

Adcionei os jars ao meu projeto

oscache-2.3
richfaces-3.0.1
ajax4jsf-1.1.1

Configurei meu web.xml (abaixo)

Mas quando executo a aplicação me retorna o seguinte na console do Netbeans:


init:
deps-module-jar:
deps-ear-jar:
deps-jar:
library-inclusion-in-archive:
library-inclusion-in-manifest:
compile:
compile-jsps:
Building jar: /home/kleins/richFaces/dist/richFaces.war
do-dist:
dist:
Executando deploy incremental para http://localhost:8084/richFaces
Distribuição incremental do http://localhost:8084/richFaces completada
Redeploying http://localhost:8084/richFaces incrementalmente
start?path=/richFaces
FAIL - Application at context path /richFaces could not be started
/home/kleins/richFaces/nbproject/build-impl.xml:476: Erro no processo de deploy :
Deploy do módulo não foi realizado.
Verifique o log do servidor para maiores detalhes.
FALHA NA EXECUÇÃO (tempo total: 1 segundo)

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
        <param-name>org.ajax4jsf.SKIN</param-name>
        <param-value>blueSky</param-value>
    </context-param>
 <filter> 
  <display-name>Ajax4jsf Filter</display-name> 
  <filter-name>ajax4jsf</filter-name> 
  <filter-class>org.ajax4jsf.Filter</filter-class> 
 </filter> 
 <filter-mapping> 
  <filter-name>ajax4jsf</filter-name> 
   <servlet-name>Faces Servlet</servlet-name>
   <dispatcher>REQUEST</dispatcher>
   <dispatcher>FORWARD</dispatcher>
   <dispatcher>INCLUDE</dispatcher>
 </filter-mapping>

    <context-param>
        <param-name>com.sun.faces.verifyObjects</param-name>
        <param-value>false</param-value>
    </context-param>
    <context-param>
        <param-name>com.sun.faces.validateXml</param-name>
        <param-value>true</param-value>
    </context-param>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
    </context-param>
    <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>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
	<welcome-file>
            index.jsp
        </welcome-file>
    </welcome-file-list>
</web-app>

Saida do TOMCAT (parece ser algo relacionado com um filtro)

01/08/2007 17:12:25 org.apache.catalina.core.StandardContext stop
INFO: Container org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/richFaces] has not been started
01/08/2007 17:12:25 org.apache.catalina.startup.HostConfig checkResources
INFO: Undeploying context [/richFaces]
01/08/2007 17:12:25 com.sun.faces.config.rules.ComponentRule end
WARNING: [ComponentRule]{faces-config/component} Merge(javax.faces.ViewRoot)
01/08/2007 17:12:26 org.ajax4jsf.cache.CacheManager getCacheFactory
INFO: Selected [org.ajax4jsf.cache.LRUMapCacheFactory] cache factory
01/08/2007 17:12:26 org.ajax4jsf.cache.LRUMapCacheFactory createCache
INFO: Creating LRUMap cache instance using parameters: {org.ajax4jsf.SKIN=blueSky, com.sun.faces.validateXml=true, javax.faces.STATE_SAVING_METHOD=client, com.sun.faces.verifyObjects=false}
01/08/2007 17:12:26 org.ajax4jsf.cache.LRUMapCacheFactory createCache
INFO: Creating LRUMap cache instance of default capacity
01/08/2007 17:12:26 org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
01/08/2007 17:12:26 org.apache.catalina.core.StandardContext start
SEVERE: Context [/richFaces] startup failed due to previous errors

Obrigado galera.

[]'s

Rodou pessoal.

Estava faltando um jar

http://commons.apache.org/collections/

Reiniciei o NetBeans e quando rodei novamente o projeto ele apresentou a exception…

Valeu… abraço.

Rodrigo