Boa tarde, estou com um problema no meu projeto pois nenhuma tag com o h que foi o apelido usado na aula para o jsf está funcionando, apenas as tags html normais estão rodando. Já fui em project facets e habilitei o javaServerFaces, mas mesmo assim não está indo, meu projeto foi construido com maven e está rodando com WildFly
Este é o meu arquivo .xhtml
<?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">
<h:body>
<h1>Cadastro juiz</h1>
<h:form>
<fieldset>
<legend>Dados do juiz</legend>
<h:panelGrid columns="4">
<h:outputLabel value="Nome:" for="nome" />
<h:inputText id="nome" value="#{usuarioBean.usuario.nome}" />
<h:outputLabel value="Cpf:" for="cpf" />
<h:inputText id="cpf" value="#{usuarioBean.usuario.cpf}" />
<h:outputLabel value="Cadastro:" for="cadastro" />
<h:inputText id="cadastro" value="#{usuarioBean.usuario.cadastro}" />
<h:commandButton value="Salvar" action="#{usuarioBean.salvar}" />
</h:panelGrid>
</fieldset>
</h:form>
</h:body>
</html>