Add Start and Stop sessions on JAVA API
[cps.git] / cps-ri / src / test / resources / hibernate.cfg.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!DOCTYPE hibernate-configuration PUBLIC\r
3         "-//Hibernate/Hibernate Configuration DTD 3.0//EN"\r
4         "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">\r
5 \r
6 <hibernate-configuration>\r
7     <session-factory>\r
8         <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>\r
9         <property name="hibernate.connection.url">${DB_URL}</property>\r
10         <property name="hibernate.connection.username">${DB_USERNAME}</property>\r
11         <property name="hibernate.connection.password">${DB_PASSWORD}</property>\r
12         <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQL82Dialect</property>\r
13         <property name="show_sql">true</property>\r
14         <property name="hibernate.hbm2ddl.auto">none</property>\r
15     </session-factory>\r
16 </hibernate-configuration>