[RESOLVIDO]Pagina Simples Primefaces - a pagina aparece em branco

Pessoal, fiz a pagina simples só incluindo o botão

	        <p:button outcome="productDetail" value="Bookmark" icon="ui-icon-star">  
				    <f:param name="productId" value="10" />  

e a pagina aparece em branco e nao da nenhum erro no JBOSS.

obs. segue em anexo a img dos meus arquivos libs

<?xml version="1.0" encoding="UTF-8" ?>
	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
	<html xmlns="http://www.w3.org/1999/xhtml"
	      xmlns:h="http://java.sun.com/jsf/html"
	      xmlns:f="http://java.sun.com/jsf/core"
	      xmlns:p="http://primefaces.prime.com.tr/ui"
	      xmlns:ui="http://java.sun.com/jsf/facelets">
	    <h:head>
	        <title>xxxxx</title>
	    </h:head>
	    <h:body>
	        <h:form id="form">
	        <p:button outcome="productDetail" value="Bookmark" icon="ui-icon-star">  
				    <f:param name="productId" value="10" />  
			</p:button> 
	       
	        </h:form>
	    </h:body>
	</html>

*******************web.xml

<?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>Project</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</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>*.jsf</url-pattern>
  </servlet-mapping>
  
      <context-param>  
        <param-name>primefaces.skin</param-name>  
        <param-value>none</param-value>  
    </context-param> 
</web-app>


coloquei o seguinte

<h:body>
<h:outputText value="ola mundo" />

<p:button id="btnCli" value="GERENCIAR CLIENTE" outcome="view/cliente" /> <!-- botão que chama a view cliente-->
<p:editor />

</h:body>

O "ola mundo " aparece no meu formulario , mas o botao nao esta aparecendo .

Mude na sua página para:

xmlns:p="http://primefaces.org/ui"

Pessoal

era isso :

 xmlns:p="http://primefaces.org/ui"