Added tutorials of the hibernate-release 5.2.18.Final
[hibernate4-maven-plugin] / src / it / tutorials / osgi / unmanaged-native / src / main / resources / hibernate.cfg.xml
diff --git a/src/it/tutorials/osgi/unmanaged-native/src/main/resources/hibernate.cfg.xml b/src/it/tutorials/osgi/unmanaged-native/src/main/resources/hibernate.cfg.xml
deleted file mode 100644 (file)
index f367c53..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<!DOCTYPE hibernate-configuration PUBLIC
-"-//Hibernate/Hibernate Configuration DTD//EN"
-"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
-<hibernate-configuration>
-    <session-factory>
-        <property name="hibernate.connection.driver_class">org.h2.Driver</property>
-        <property name="hibernate.connection.url">jdbc:h2:mem:db_unmanaged_native;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
-        <property name="hibernate.connection.username">sa</property>
-        <property name="hibernate.connection.password"></property>
-        <property name="hibernate.dialect">org.hibernate.dialect.H2Dialect</property>
-        <property name="hibernate.hbm2ddl.auto">create-drop</property>
-        
-        <!-- <property name="hibernate.connection.pool_size">5</property>
-               <property name="hibernate.c3p0.min_size">50</property>
-               <property name="hibernate.c3p0.max_size">800</property>
-               <property name="hibernate.c3p0.max_statements">50</property>
-               <property name="hibernate.jdbc.batch_size">10</property>
-               <property name="hibernate.c3p0.timeout">300</property>
-               <property name="hibernate.c3p0.idle_test_period">3000</property>
-               <property name="hibernate.c3p0.testConnectionOnCheckout">true</property> -->
-               
-               <!-- <property name="hibernate.connection.pool_size">5</property>
-               <property name="hibernate.jdbc.batch_size">10</property>
-               <property name="hibernate.connection.provider_class">proxool</property>
-               <property name="hibernate.proxool.properties">pool-one.properties</property>
-               <property name="hibernate.proxool.pool_alias">pool-one</property> -->
-               
-               <!-- <property name="hibernate.cache.region_prefix">hibernate.test</property>
-               <property name="cache.use_query_cache">true</property>
-        <property name="cache.use_second_level_cache">true</property>
-        <property name="cache.use_structured_entries">true</property>
-        <property name="cache.region.factory_class">org.hibernate.cache.EhCacheRegionFactory</property>
-        <property name="net.sf.ehcache.configurationResourceName">file:///[PATH]/unmanaged-jpa/src/main/resources/ehcache.xml</property> -->
-    
-        <!-- <property name="hibernate.cache.region_prefix">hibernate.test</property>
-               <property name="cache.use_query_cache">true</property>
-        <property name="cache.use_second_level_cache">true</property>
-        <property name="cache.use_structured_entries">true</property>
-        <property name="cache.region.factory_class">org.hibernate.cache.infinispan.InfinispanRegionFactory</property> -->
-        
-        <mapping class="org.hibernate.osgitest.entity.DataPoint"/>
-    </session-factory>
-</hibernate-configuration>