Jboss 6 - jsf 2 iniciante

Ocorre erro ao fazer deploy no jboss6. Segue persistence.xml.

<?xml version=“1.0” encoding=“UTF-8”?>
<persistence version=“2.0” xmlns=“http://java.sun.com/xml/ns/persistence” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=“http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd”>
<persistence-unit name=“jpateste” transaction-type=“RESOURCE_LOCAL”>
<non-jta-data-source>jpateste</non-jta-data-source>

	&lt;class&gt;blog.Categoria&lt;/class&gt;
	&lt;class&gt;blog.Blog&lt;/class&gt;
	&lt;properties&gt;		
		&lt;property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/blog"/&gt;
		&lt;property name="javax.persistence.jdbc.user" value="root"/&gt;
		&lt;property name="javax.persistence.jdbc.password" value="teste"/&gt;
		&lt;property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/&gt;
		&lt;property name="eclipselink.logging.level" value="ALL"/&gt;
		&lt;property name="eclipselink.ddl-generation" value="none"/&gt;
	&lt;/properties&gt;
&lt;/persistence-unit&gt;

</persistence>

Segue exceção:

Failed to create Resource teste.war - cause: java.lang.Exception:Failed to start deployment [vfs:///home/usuario/Documentos/jboss-6.0.0.Final/server/default/deploy/teste.war] during deployment of ‘teste.war’ - cause: java.lang.RuntimeException:org.jboss.deployers.client.spi.IncompleteDeploymentException: Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS): DEPLOYMENTS MISSING DEPENDENCIES: Deployment “persistence.unit:unitName=teste.war#jpateste” is missing the following dependencies: Dependency “jboss.jca:name=jpateste,service=DataSourceBinding” (should be in state “Create”, but is actually in state “** NOT FOUND Depends on ‘jboss.jca:name=jpateste,service=DataSourceBinding’ ") DEPLOYMENTS IN ERROR: Deployment “jboss.jca:name=jpateste,service=DataSourceBinding” is in error due to the following reason(s): ** NOT FOUND Depends on ‘jboss.jca:name=jpateste,service=DataSourceBinding’ ** -> org.jboss.deployers.client.spi.IncompleteDeploymentException:Summary of incomplete deployments (SEE PREVIOUS ERRORS FOR DETAILS): DEPLOYMENTS MISSING DEPENDENCIES: Deployment “persistence.unit:unitName=teste.war#jpateste” is missing the following dependencies: Dependency “jboss.jca:name=jpateste,service=DataSourceBinding” (should be in state “Create”, but is actually in state " NOT FOUND Depends on ‘jboss.jca:name=jpateste,service=DataSourceBinding’ **”) DEPLOYMENTS IN ERROR: Deployment “jboss.jca:name=jpateste,service=DataSourceBinding” is in error due to the following reason(s): ** NOT FOUND Depends on ‘jboss.jca:name=jpateste,service=DataSourceBinding’ **

Solucionado

como resolveu?

Peguei o exemplo de conexão no site do hibernate.