Skip to content

Commit

Permalink
Merge pull request #273 from barspi/master
Browse files Browse the repository at this point in the history
Use current location for Hibernate DTDs
  • Loading branch information
ar authored Dec 17, 2022
2 parents b7f8d4c + 1b56241 commit 8a020d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/minigl/src/test/java/org/jpos/gl/TestBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void setUpBase () throws Exception {
String hibernateCfg = "<?xml version='1.0' encoding='utf-8'?>\n" +
"<!DOCTYPE hibernate-configuration PUBLIC\n" +
" \"-//Hibernate/Hibernate Configuration DTD 3.0//EN\"\n" +
" \"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd\">\n" +
" \"http://hibernate.org/dtd/hibernate-configuration-3.0.dtd\">\n" +
"\n" +
"<hibernate-configuration>\n" +
" <session-factory>\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-->

<!DOCTYPE hibernate-mapping
SYSTEM "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
SYSTEM "http://hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<hibernate-mapping>
<class name="org.jpos.ee.status.Status" table="status">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-->

<!DOCTYPE hibernate-mapping
SYSTEM "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
SYSTEM "http://hibernate.org/dtd/hibernate-mapping-3.0.dtd">

<hibernate-mapping>
<class name="org.jpos.ee.status.StatusTag" table="status_tag">
Expand Down

0 comments on commit 8a020d9

Please sign in to comment.