From 0a3be1e4f094410dce23aa540e60d08c66a62b07 Mon Sep 17 00:00:00 2001 From: Koen Aers Date: Fri, 18 Jul 2025 17:46:25 +0300 Subject: [PATCH] HBX-3053: Update some identifiers from 6.6.20.Final to 6.6.21.Final Signed-off-by: Koen Aers --- gradle/docs/5-minute-tutorial.md | 6 +++--- gradle/docs/examples/5-minute-tutorial/app/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle/docs/5-minute-tutorial.md b/gradle/docs/5-minute-tutorial.md index e9122712b0..fd5508b966 100644 --- a/gradle/docs/5-minute-tutorial.md +++ b/gradle/docs/5-minute-tutorial.md @@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file. ## Modify the generated `app\build.gradle` file We have to specify the use of the Gradle plugin in the `plugin` section of the `build.gradle` file. -So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.20.Final'` to that section. +So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.21.Final'` to that section. ```groovy ... plugins { ... - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.20.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.21.Final' } ... ``` @@ -114,7 +114,7 @@ with the contents as shown below. ```groovy plugins { id 'application' - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.20.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.21.Final' } repositories { diff --git a/gradle/docs/examples/5-minute-tutorial/app/build.gradle b/gradle/docs/examples/5-minute-tutorial/app/build.gradle index e461dc8b4c..f225f994e1 100644 --- a/gradle/docs/examples/5-minute-tutorial/app/build.gradle +++ b/gradle/docs/examples/5-minute-tutorial/app/build.gradle @@ -8,7 +8,7 @@ plugins { // Apply the application plugin to add support for building a CLI application in Java. id 'application' - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.20.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.21.Final' } repositories {