Removing carriage returns
This commit is contained in:
parent
fc1c3fd568
commit
4924acc8b9
2 changed files with 26 additions and 26 deletions
|
|
@ -1,13 +1,13 @@
|
||||||
<!DOCTYPE hibernate-configuration
|
<!DOCTYPE hibernate-configuration
|
||||||
PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
||||||
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
||||||
|
|
||||||
<hibernate-configuration>
|
<hibernate-configuration>
|
||||||
<session-factory>
|
<session-factory>
|
||||||
<property name="hibernate.dialect">${hibernate.dialect}</property>
|
<property name="hibernate.dialect">${hibernate.dialect}</property>
|
||||||
<property name="hibernate.show_sql">${hibernate.show_sql}</property>
|
<property name="hibernate.show_sql">${hibernate.show_sql}</property>
|
||||||
<property name="hibernate.format_sql">${hibernate.format_sql}</property>
|
<property name="hibernate.format_sql">${hibernate.format_sql}</property>
|
||||||
<property name="hibernate.use_sql_comments">${hibernate.use_sql_comments}</property>
|
<property name="hibernate.use_sql_comments">${hibernate.use_sql_comments}</property>
|
||||||
<property name="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</property>
|
<property name="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</property>
|
||||||
</session-factory>
|
</session-factory>
|
||||||
</hibernate-configuration>
|
</hibernate-configuration>
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
<!DOCTYPE hibernate-configuration
|
<!DOCTYPE hibernate-configuration
|
||||||
PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
||||||
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
|
||||||
|
|
||||||
<hibernate-configuration>
|
<hibernate-configuration>
|
||||||
<session-factory>
|
<session-factory>
|
||||||
<property name="hibernate.dialect">${hibernate.dialect}</property>
|
<property name="hibernate.dialect">${hibernate.dialect}</property>
|
||||||
<property name="hibernate.show_sql">true</property>
|
<property name="hibernate.show_sql">true</property>
|
||||||
<property name="hibernate.format_sql">true</property>
|
<property name="hibernate.format_sql">true</property>
|
||||||
<property name="hibernate.use_sql_comments">true</property>
|
<property name="hibernate.use_sql_comments">true</property>
|
||||||
<property name="hibernate.hbm2ddl.auto">update</property>
|
<property name="hibernate.hbm2ddl.auto">update</property>
|
||||||
</session-factory>
|
</session-factory>
|
||||||
</hibernate-configuration>
|
</hibernate-configuration>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue