Olá Pessoal!
Alguem sabe o porque das paginas não "pegarem" o richfaces e nem qq componente. A página abaixo por exemplo não pega o estilo Bluesky e nem os links funcionam, fica só a escrita pura na tela.
Os jars do richfaces estão na pasta lib.
richfaces-api-3.3.2.SR1.jar
richfaces-impl-3.3.2.SR1.jar
richfaces-ui-3.3.2.SR1.jar
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<ui:composition template="/WEB-INF/templates/default.xhtml">
<ui:define name="title"> Home</ui:define>
<ui:define name="header">Exemplo Spring Framework</ui:define>
<ui:define name="body">
<ul>
<li><h:outputLink value="setup.jsf">Carga do Banco de Dados</h:outputLink></li>
<li><h:outputLink value="transferencia.jsf">Transferência Bancária</h:outputLink></li>
<li><h:outputLink value="extrato.jsf">Tirar Extrato</h:outputLink></li>
</ul>
</ui:define>
</ui:composition>
</html>
web.xml
<!-- Define o skin para o Richfaces -->
<context-param>
<param-name>org.richfaces.SKIN</param-name>
<param-value>blueSky</param-value>
</context-param>
pom.xml
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
<version>3.3.2.SR1</version>
</dependency>