| 
					
				 | 
			
			
				@@ -0,0 +1,16 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:orm="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_2_0.xsd"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <persistence-unit name="com.acme:claims:1.0.0-SNAPSHOT" transaction-type="JTA"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <exclude-unlisted-classes>true</exclude-unlisted-classes> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <properties> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.max_fetch_depth" value="3"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.hbm2ddl.auto" value="update"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.show_sql" value="false"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.id.new_generator_mappings" value="false"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform"/> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </properties> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </persistence-unit> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+</persistence> 
			 |