Struts 2 não roda o projeto

Olá, estou tentando testar o struts 2 aqui em minha máquina, porém o tomcat não consegue rodar o projeto gera esse erro.

FAIL - Application at context path /struts2-blank-2.0.6 could not be started

Como podem ver baixei o projeto do próprio site e mesmo assim não funciona, alguém tem alguma idéia ?

Vá em $CATALINA_HOME/logs/catalina.out e veja qual o erro ao iniciar o contexto.

08/05/2007 17:00:32 org.apache.catalina.core.StandardContext start
SEVERE: Context [/struts2-blank-2.0.6] startup failed due to previous errors
08/05/2007 17:02:53 org.apache.catalina.core.StandardContext start
SEVERE: Error filterStart
08/05/2007 17:02:53 org.apache.catalina.core.StandardContext start
SEVERE: Context [/struts2-blank-2.0.6] startup failed due to previous errors

o web.xml está assim:

[code]<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" 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">

&lt;display-name&gt;Struts Blank&lt;/display-name&gt;

&lt;filter&gt;
    &lt;filter-name&gt;struts2&lt;/filter-name&gt;
    &lt;filter-class&gt;org.apache.struts2.dispatcher.FilterDispatcher&lt;/filter-class&gt;
&lt;/filter&gt;

&lt;filter-mapping&gt;
    &lt;filter-name&gt;struts2&lt;/filter-name&gt;
    &lt;url-pattern&gt;/*&lt;/url-pattern&gt;
&lt;/filter-mapping&gt;

&lt;welcome-file-list&gt;
    &lt;welcome-file&gt;index.html&lt;/welcome-file&gt;
&lt;/welcome-file-list&gt;

</web-app>[/code]