<persistence 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 persistence.xsd" version="1.0">
	<persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
		<provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
		<mapping-file>META-INF/advanced-entity-mappings.xml</mapping-file>
		<mapping-file>META-INF/inheritance-entity-mappings.xml</mapping-file>
		<mapping-file>META-INF/inherited-entity-mappings.xml</mapping-file>
		<mapping-file>META-INF/relationships-entity-mappings.xml</mapping-file>
		<mapping-file>META-INF/orm-annotation-merge-advanced-entity-mappings.xml</mapping-file>
		<mapping-file>META-INF/orm-annotation-merge-relationships-entity-mappings.xml</mapping-file>
		<exclude-unlisted-classes>false</exclude-unlisted-classes>
		<properties>
			<property name="jdbc.driver" value="TEST_DRIVER_CLASS"/>
			<property name="jdbc.connection.string" value="TEST_DATABASE_URL"/>
			<property name="jdbc.user" value="TEST_DATABASE_USER"/>
			<property name="jdbc.password" value="TEST_DATABASE_PASSWORD"/>
			<property name="toplink.platform.class.name" value="TEST_PLATFORM_NAME"/>
			<property name="toplink.logging.level" value="OFF"/>
			<property name="toplink.orm.throw.exceptions" value="true"/>
		</properties>
	</persistence-unit>

	<persistence-unit name="default1">
		<provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
		<exclude-unlisted-classes>false</exclude-unlisted-classes>
		<properties>
			<property name="jdbc.driver" value="TEST_DRIVER_CLASS"/>
			<property name="jdbc.connection.string" value="TEST_DATABASE_URL"/>
			<property name="jdbc.user" value="TEST_DATABASE_USER"/>
			<property name="jdbc.password" value="TEST_DATABASE_PASSWORD"/>
			<property name="toplink.platform.class.name" value="TEST_PLATFORM_NAME"/>
			<property name="toplink.logging.level" value="OFF"/>
		</properties>
	</persistence-unit>
	<persistence-unit name="ignore" transaction-type="JTA">
		<description>This PU is for validation purpose only - it should not 
                      break the rest of the tests</description>
		<provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
		<jta-data-source>jdbc/__default</jta-data-source>
	</persistence-unit>
</persistence>

