You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2014/11/07 16:35:20 UTC

svn commit: r1637390 - /aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml

Author: cschneider
Date: Fri Nov  7 15:35:20 2014
New Revision: 1637390

URL: http://svn.apache.org/r1637390
Log:
ARIES-1272 scan for entities

Modified:
    aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml

Modified: aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml
URL: http://svn.apache.org/viewvc/aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml?rev=1637390&r1=1637389&r2=1637390&view=diff
==============================================================================
--- aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml (original)
+++ aries/trunk/jpa/jpa-container-testbundle/src/main/resources/META-INF/persistence.xml Fri Nov  7 15:35:20 2014
@@ -27,8 +27,6 @@
     
     <jta-data-source>osgi:service/javax.sql.DataSource</jta-data-source>
     <non-jta-data-source>osgi:service/javax.sql.DataSource</non-jta-data-source>
-    <class>org.apache.aries.jpa.container.itest.entities.Car</class>
-    <exclude-unlisted-classes>true</exclude-unlisted-classes>
     <properties>
         <!-- This is to avoid compile time enhancement which would conflict with hibernate -->
         <property name="openjpa.RuntimeUnenhancedClasses" value="supported"/>
@@ -47,8 +45,6 @@
     <description>Test persistence unit for the JPA Container and Context iTests</description>
     <jta-data-source>blueprint:comp/jta</jta-data-source>
     <non-jta-data-source>blueprint:comp/nonjta</non-jta-data-source>
-    <class>org.apache.aries.jpa.container.itest.entities.Car</class>
-    <exclude-unlisted-classes>true</exclude-unlisted-classes>
     <properties>
      <!-- These properties are creating the database on the fly. We are using them to avoid the tests having
           to create a database  -->
@@ -64,8 +60,6 @@
     <description>Test persistence unit for the JPA Container and Context iTests</description>
     <jta-data-source>blueprint:comp/xa</jta-data-source>
     <non-jta-data-source>blueprint:comp/nonjta</non-jta-data-source>
-    <class>org.apache.aries.jpa.container.itest.entities.Car</class>
-    <exclude-unlisted-classes>true</exclude-unlisted-classes>
     <properties>
      <!-- These properties are creating the database on the fly. We are using them to avoid the tests having
           to create a database  -->
@@ -78,8 +72,6 @@
   
   <persistence-unit name="dsf-test-unit" transaction-type="RESOURCE_LOCAL">
     <description>Test persistence unit for the JPA Container DataSourceFactory iTests</description>
-    <class>org.apache.aries.jpa.container.itest.entities.Car</class>
-    <exclude-unlisted-classes>true</exclude-unlisted-classes>
     <properties>
      <!-- These properties are creating the database on the fly. We are using them to avoid the tests having
           to create a database  -->
@@ -94,8 +86,6 @@
   
   <persistence-unit name="dsf-xa-test-unit" transaction-type="JTA">
     <description>Test persistence unit for the JPA Container DataSourceFactory iTests</description>
-    <class>org.apache.aries.jpa.container.itest.entities.Car</class>
-    <exclude-unlisted-classes>true</exclude-unlisted-classes>
     <properties>
      <!-- These properties are creating the database on the fly. We are using them to avoid the tests having
           to create a database  -->