Skip to content

Commit 5a8dca5

Browse files
committed
HBX-3083: Change the protocol of references to the hibernate mapping DTD to 'https' from 'http'
Signed-off-by: Koen Aers <[email protected]>
1 parent 80707c5 commit 5a8dca5

File tree

87 files changed

+97
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+97
-97
lines changed

jbt/src/test/java/org/hibernate/tool/orm/jbt/util/MetadataHelperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private static class Foo {
8888
private static final String TEST_HBM_XML_STRING =
8989
"<!DOCTYPE hibernate-mapping PUBLIC" +
9090
" '-//Hibernate/Hibernate Mapping DTD 3.0//EN'" +
91-
" 'http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd'>" +
91+
" 'https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd'>" +
9292
"<hibernate-mapping package='org.hibernate.tool.orm.jbt.util'>" +
9393
" <class name='MetadataHelperTest$Foo'>" +
9494
" <id name='id'/>" +

orm/src/main/resources/hbm/generalhbm.hbm.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55

66
<hibernate-mapping>
77
<!--

orm/src/main/resources/hbm/hibernate-mapping.hbm.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55

66
<!-- Generated ${date} by Hibernate Tools ${version} -->
77
<#if hmgs?exists && hmgs.hasNonDefaultSettings()>

test/common/src/main/resources/org/hibernate/tool/ant/AntHibernateTool/TopDown.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55
<hibernate-mapping>
66

77
<class name="org.hibernate.tool.hbm2x.ant.TopDown">

test/common/src/main/resources/org/hibernate/tool/ant/GenericExport/TopDown.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55
<hibernate-mapping>
66

77
<class name="org.hibernate.tool.hbm2x.ant.TopDown">

test/common/src/main/resources/org/hibernate/tool/ant/Hbm2JavaConfiguration/SomeClass.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55
<hibernate-mapping>
66

77
<class name="SomeClass">

test/common/src/main/resources/org/hibernate/tool/ant/Hbm2JavaEJB3Configuration/SomeClass.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55
<hibernate-mapping>
66

77
<class name="SomeClass">

test/common/src/main/resources/org/hibernate/tool/ant/HbmLint/Column.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55

66
<hibernate-mapping package="org.hibernate.tool.hbm2x.hbm2hbmxml">
77
<!--

test/common/src/main/resources/org/hibernate/tool/ant/HbmLint/SchemaIssues.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55

66
<hibernate-mapping package="org.hibernate.tool.hbmlint">
77

test/common/src/main/resources/org/hibernate/tool/ant/Properties/SomeClass.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE hibernate-mapping PUBLIC
33
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4-
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
4+
"https://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
55
<hibernate-mapping>
66

77
<class name="SomeClass">

0 commit comments

Comments
 (0)