Skip to content

Commit b93833b

Browse files
committed
HBX-3046: Update Hibernate ORM dependency to 7.0.7.Final
Signed-off-by: Koen Aers <[email protected]>
1 parent e49e96a commit b93833b

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

ant/docs/5-minute-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ for the purpose of this short tutorial.
4545
```xml
4646
<project xmlns:ivy="antlib:org.apache.ivy.ant">
4747

48-
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.6.Final"/>
48+
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.7.Final"/>
4949
<property name="h2.version" value="the-h2-version-to-use, e.g. 2.3.232"/>
5050

5151
<ivy:cachepath organisation="org.hibernate.tool" module="hibernate-tools-ant" revision="${hibernate.tools.version}"

ant/docs/examples/common/included.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
-->
1616
<project name="common" xmlns:ivy="antlib:org.apache.ivy.ant">
1717

18-
<property name="hibernate-tools.version" value="7.0.6.Final"/>
18+
<property name="hibernate-tools.version" value="7.0.7.Final"/>
1919
<property name="javaee-api.version" value="8.0.1"/>
2020
<property name="jdbc-driver.org" value="com.h2database"/>
2121
<property name="jdbc-driver.module" value="h2"/>

ant/docs/reference-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ file. In addition, you will need to define properties (or replace the variables)
4949
the jdbc driver and for the version information. See an example in the snippet below:
5050

5151
```xml
52-
<property name="hibernate-tools.version" value="7.0.6.Final"/>
52+
<property name="hibernate-tools.version" value="7.0.7.Final"/>
5353
<property name="jdbc-driver.org" value="com.h2database"/>
5454
<property name="jdbc-driver.module" value="h2"/>
5555
<property name="jdbc-driver.version" value="2.3.232"/>

gradle/docs/5-minute-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file.
8484
## Modify the generated `app\build.gradle` file
8585

8686
We have to specify the use of the Gradle plugin in the `plugin` section of the `build.gradle` file.
87-
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.6.Final'` to that section.
87+
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.7.Final'` to that section.
8888

8989
```groovy
9090
...
9191
plugins {
9292
...
93-
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.6.Final'
93+
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.7.Final'
9494
}
9595
...
9696
```
@@ -114,7 +114,7 @@ with the contents as shown below.
114114
```groovy
115115
plugins {
116116
id('application')
117-
id('org.hibernate.tool.hibernate-tools-gradle') version '7.0.6.Final'
117+
id('org.hibernate.tool.hibernate-tools-gradle') version '7.0.7.Final'
118118
}
119119
120120
repositories {

gradle/docs/examples/5-minute-tutorial/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
plugins {
99
// Apply the application plugin to add support for building a CLI application in Java.
1010
id 'application'
11-
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.6.Final'
11+
id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.7.Final'
1212
}
1313

1414
repositories {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<google-java-format.version>1.27.0</google-java-format.version>
9595
<h2.version>2.3.232</h2.version>
9696
<hibernate-commons-annotations.version>7.0.3.Final</hibernate-commons-annotations.version>
97-
<hibernate-orm.version>7.0.6.Final</hibernate-orm.version>
97+
<hibernate-orm.version>7.0.7.Final</hibernate-orm.version>
9898
<hsqldb.version>2.6.1</hsqldb.version>
9999
<javaee-api.version>8.0.1</javaee-api.version>
100100
<jboss-logging.version>3.6.1.Final</jboss-logging.version>

0 commit comments

Comments
 (0)