Fixed error-reporting: errors reported by Hibernate are no longer swallowed
[hibernate4-maven-plugin] / src / it / tutorials / osgi / datasource-h2.xml
diff --git a/src/it/tutorials/osgi/datasource-h2.xml b/src/it/tutorials/osgi/datasource-h2.xml
deleted file mode 100644 (file)
index 76ede3c..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-First install the H2 driver using:
-> install -s mvn:com.h2database/h2/1.3.163
-
-Then copy this file to the deploy folder
--->
-<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
-  
-  <bean id="dataSource" class="org.h2.jdbcx.JdbcDataSource">
-      <property name="URL" value="jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE"/>
-      <property name="user" value="sa"/>
-      <property name="password" value=""/>
-  </bean>
-  
-  <service interface="javax.sql.DataSource" ref="dataSource">
-    <service-properties>
-            <entry key="osgi.jndi.service.name" value="jdbc/h2ds"/>
-    </service-properties>
-  </service>
-</blueprint>