fixing some hibernate prop
diff --git a/pom.xml b/pom.xml
index 65276cf..2cd043d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
   <artifactId>openejb-tck</artifactId>
   <name>OpenEJB TCK Harness</name>
 
-  <version>4.0.0-beta-1</version>
+  <version>4.0.0-beta-2-SNAPSHOT</version>
   <!--openejb.version-->
 
   <description>
@@ -95,7 +95,7 @@
       <groupId>org.apache.openejb</groupId>
       <artifactId>apache-tomee</artifactId>
       <type>zip</type>
-      <version>1.0.0-beta-1</version>
+      <version>1.0.0-beta-2-SNAPSHOT</version>
       <classifier>webprofile</classifier>
     </dependency>
 
@@ -149,8 +149,20 @@
 
     <dependency>
       <groupId>org.apache.openejb</groupId>
+      <artifactId>openejb-core-hibernate</artifactId>
+      <version>4.0.0-beta-1</version>
+      <type>pom</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.openejb</groupId>
       <artifactId>openejb-core</artifactId>
-      <version>${project.version}</version>
+      <version>4.0.0-beta-1</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.openejb</groupId>
+          <artifactId>openjpa</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>
@@ -663,7 +675,7 @@
       <properties>
         <!-- where we will unpack tomcat -->
         <!--openejb.home>${project.build.directory}/apache-tomee-${project.version}</openejb.home-->
-        <openejb.home>target/apache-tomee-webprofile-1.0.0-beta-1</openejb.home>
+        <openejb.home>target/apache-tomee-webprofile-1.0.0-beta-2-SNAPSHOT</openejb.home>
       </properties>
 
       <build>
diff --git a/src/test/tomee/conf/system.properties b/src/test/tomee/conf/system.properties
index fb8484b..fc378c7 100644
--- a/src/test/tomee/conf/system.properties
+++ b/src/test/tomee/conf/system.properties
@@ -17,14 +17,18 @@
 javax.persistence.provider=org.hibernate.ejb.HibernatePersistence
 
 PERSISTENCEUNIT.CTS-EM.hibernate.transaction.manager_lookup_class=org.apache.openejb.hibernate.TransactionManagerLookup
-PERSISTENCEUNIT.CTS-EM.hibernate.dialect=org.hibernate.dialect.DerbyDialect
+PERSISTENCEUNIT.CTS-EM.hibernate.dialect=org.hibernate.dialect.DerbyTenSevenDialect
 PERSISTENCEUNIT.CTS-EM.hibernate.jdbc.batch_size=1
+PERSISTENCEUNIT.CTS-EM.hibernate.hbm2ddl.auto=update
+PERSISTENCEUNIT.CTS-EM.hibernate.show.sql=true
 
 PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.transaction.manager_lookup_class=org.apache.openejb.hibernate.TransactionManagerLookup
-PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.dialect=org.hibernate.dialect.DerbyDialect
+PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.dialect=org.hibernate.dialect.DerbyTenSevenDialect
 PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.jdbc.batch_size=1
-PERSISTENCEUNIT.CTS-EM-NOTX.current_session_context_clas=jta
+PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.current_session_context_class=jta
 PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.transaction.factory_class=org.hibernate.transaction.JTATransactionFactory
+PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.hbm2ddl.auto=update
+PERSISTENCEUNIT.CTS-EM-NOTX.hibernate.show.sql=true
 
 RESOURCE.whitebox-notx-param|poolMaxSize=100
 RESOURCE.whitebox-notx|poolMaxSize=100