<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD//EN"

 "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">


<hibernate-configuration>
    <!-- shared properties -->

    <session-factory>

    <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
    <property name="connection.url">jdbc:hsqldb:.</property>
    <property name="connection.username">sa</property>
    <property name="connection.password"></property>
    <property name="connection.pool_size">0</property>
    <property name="show_sql">false</property>
    <property name="dialect">net.sf.hibernate.dialect.HSQLDialect</property>        
    
    <mapping resource="org/apache/maven/hibernate/Item.hbm.xml"/>  
    
    </session-factory>
</hibernate-configuration>


