Flávio Cysne, Massa..funciou dessa forma..
==================================================================
<?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:p="
http://primefaces.prime.com.tr/ui"
xmlns:f="
http://java.sun.com/jsf/core">
<h:head>
<title>Cadastro de Pessoa</title>
<h:outputScript name="jquery.maskedinput.js" library="jsmi" target="head"/>
<h:outputScript name="jquery.maskMoney.js" library="jmoney" target="head"/>
<h:outputScript name="jquery.js" library="j" target="head"/>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.maskMoney.js" type="text/javascript"></script>
<script src="jquery.maskedinput.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function($){
$(".dataNascimento").mask("99/99/99");
$(".valor").maskMoney({symbol:"R$", decimal:",", thousands:"."});
});
</script>
</h:head>
<h:body>
<h:form>
<h:messages/>
<div style="float: left;">
<fieldset>
<legend>Cadastro de Pessoa</legend>
<h:panelGrid columns="2">
<h:outputLabel for="nome" value="Nome: "/>
<h:inputText id="nome" value="#{pessoaController.pessoa.nome}"
maxlength="30"
required="true"
requiredMessage="O campo [Nome] é Obrigatório!"/>
<h:outputLabel for="email" value="Email: "/>
<h:inputText id="email" value="#{pessoaController.pessoa.email}"
required="true"
requiredMessage="O [email] é obrigatório!"
autocomplete="on"
/>
<h:outputLabel for="valor" value="Valor: "/>
<h:inputText id="valor" styleClass="valor"/>
<h:outputLabel for="dataNascimento" value="Nascimento: "/>
<h:inputText id="dataNascimento" styleClass="dataNascimento"/>
<h:outputLabel for="endereco" value="Endereço: "/>
<h:inputText id="endereco" value="#{pessoaController.pessoa.endereco}"/>
</h:panelGrid>
<h:panelGrid columns="2">
<h:commandButton value="Cadastrar" action="#{pessoaController.adicionarPessoa}">
</h:commandButton>
<h:commandButton value="Limpar" type="reset">
</h:commandButton>
</h:panelGrid>
</fieldset>
</div>
</h:form>
</h:body>
</html>
================================================================