[RESOLVIDO] Problemas <p:growl> PrimeFaces 3.2

Estou com um problema com o <p:growl> do PrimeFaces 3.2, ele só aparece quando uso um <p:commandButton > com ajax=false
e quando uso o <p:commandButton com ajax=true e coloco um update=":growl" o msm não executa nenhuma ação

ja testei com os fontes do proprio http://www.primefaces.org/showcase/ui/growl.jsf e continua nao aparecendo… alguem sabe como resolver isso?

&gt;&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot; ?&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"
	xmlns:h="http://java.sun.com/jsf/html"
	xmlns:ui="http://java.sun.com/jsf/facelets"
	xmlns:p="http://primefaces.org/ui"
	xmlns:f="http://java.sun.com/jsf/core"&gt;

&lt;h:head&gt;
	&lt;title&gt;&lt;ui:insert name="title" /&gt;&lt;/title&gt;
	&lt;link href="#{facesContext.externalContext.requestContextPath}/resources/css/template.css"	rel="stylesheet" type="text/css" /&gt;
&lt;/h:head&gt;
&lt;h:body&gt;
	&lt;f:view contentType="text/html"&gt;

		&lt;h:form&gt;
			&lt;p:growl id="growl" showDetail="true" sticky="true" /&gt;
			&lt;p:panel header="Growl"&gt;
				&lt;p:commandButton value="Save" actionListener="#{teste.teste}" update="growl" /&gt;
			&lt;/p:panel&gt;
		&lt;/h:form&gt;

	&lt;/f:view&gt;
&lt;/h:body&gt;
&lt;/html&gt;

onde no controller Teste

    public void teste(ActionEvent actionEvent){
	FacesMessage facesMsg = new FacesMessage(FacesMessage.SEVERITY_INFO, "TESTE", "TESTE1");
	FacesContext.getCurrentInstance().addMessage(null, facesMsg);
    }

######### SOLUÇÃO ##########

Atualizei as seguintes dependencias e funcionou

		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.faces&lt;/groupId&gt;
			&lt;artifactId&gt;jsf-api&lt;/artifactId&gt;
			&lt;version&gt;2.1.7&lt;/version&gt;
			&lt;scope&gt;compile&lt;/scope&gt;
		&lt;/dependency&gt;
		&lt;dependency&gt;
			&lt;groupId&gt;com.sun.faces&lt;/groupId&gt;
			&lt;artifactId&gt;jsf-impl&lt;/artifactId&gt;
			&lt;version&gt;2.1.7&lt;/version&gt;
			&lt;scope&gt;compile&lt;/scope&gt;
		&lt;/dependency&gt;