P:accordionPanel não renderiza ![RESOLVIDO]

Pessoal,

no código abaixo,

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.prime.com.tr/ui">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>

<h:body>   
  <h:form> 

		<p:accordionPanel activeIndex="0" collapsible="true">
			<p:tab title="First Tab Title">
				<h:outputText value="First tab" />
			</p:tab>
			
			<p:tab title="Second Tab Title" activeIndex="1" collapsible="true">
				<h:outputText value="Second Tab" />
			</p:tab>
			
			<p:tab title="Third Tab Title" activeIndex="2" collapsible="true">
				<h:outputText value="Third Tab" />
			</p:tab>
		</p:accordionPanel>
	
  </h:form>
</h:body>
</html>

o componente accordingPanel não está sendo renderizado, o que deveria ser a aba está sendo impresso como texto simples, tipo: ABA1 ABA 2 ABA 3…

Alguém pode ajudar?

Grato.

no meu ta tudo ok…
da uma olhada…

<p:accordionPanel activeIndex="-1" autoHeight="false">
				<p:tab title="Pesquisa">
					<h:form>
						<p:commandLink value="Pesquisa Rápida"
							oncomplete="dialogExibirMapa.show()"
							actionListener="#{mapController.prepararPesquisa}"
							style="margin-right:20px;" />
					</h:form>
				</p:tab>
				<p:tab title="Links Úteis">
					<h:form>
						<p:commandLink value="Sites de Alertas"
							oncomplete="alertas.show()" style="margin-right:20px;" />
					</h:form>
				</p:tab>
				<p:tab title="Legenda">
					<h:form>
						<p:commandLink value="Exibir Legenda" oncomplete="legendas.show()"
							style="margin-right:20px;" />
					</h:form>
				</p:tab>
			</p:accordionPanel>

Espero que ajude…

Cara,

não sei exatamente o que ocorreu. Refiz o build path e deu certo.

Obrigado.