From e56ccc17952f55a3ab738c2ab45bc0a3aa7ef0b9 Mon Sep 17 00:00:00 2001 From: Koen Aers Date: Mon, 25 Aug 2025 14:36:31 +0200 Subject: [PATCH] HBX-3103: Update version identifiers in Jenkinsfile to 6.6.28.Final and 6.6.29-SNAPSHOT respectively Signed-off-by: Koen Aers --- ci/release/Jenkinsfile | 8 ++++---- gradle/docs/5-minute-tutorial.md | 6 +++--- gradle/docs/examples/5-minute-tutorial/app/build.gradle | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ci/release/Jenkinsfile b/ci/release/Jenkinsfile index fca39280c1..cd7ca7b4b3 100644 --- a/ci/release/Jenkinsfile +++ b/ci/release/Jenkinsfile @@ -36,14 +36,14 @@ pipeline { parameters { string( name: 'RELEASE_VERSION', - defaultValue: '6.6.27.Final', - description: 'The version to be released, e.g. 6.6.27.Final.', + defaultValue: '6.6.28.Final', + description: 'The version to be released, e.g. 6.6.28.Final.', trim: true ) string( name: 'DEVELOPMENT_VERSION', - defaultValue: '6.6.28-SNAPSHOT', - description: 'The next version to be used after the release, e.g. 6.6.28-SNAPSHOT.', + defaultValue: '6.6.29-SNAPSHOT', + description: 'The next version to be used after the release, e.g. 6.6.29-SNAPSHOT.', trim: true ) booleanParam( diff --git a/gradle/docs/5-minute-tutorial.md b/gradle/docs/5-minute-tutorial.md index e389b300fd..9d3f44457c 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.27.Final'` to that section. +So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.28.Final'` to that section. ```groovy ... plugins { ... - id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.27.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.28.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.27.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.28.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 11c50b2db8..1b59475a38 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.27.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.28.Final' } repositories {