From 3b0c560675cd1fd0230fab294448222e3c6f8473 Mon Sep 17 00:00:00 2001 From: Koen Aers Date: Tue, 29 Jul 2025 09:03:53 +0300 Subject: [PATCH] HBX-3065: Update version identifiers in Jenkinsfile to 7.0.9.Final and 7.0.10-SNAPSHOT respectively Signed-off-by: Koen Aers --- ant/docs/5-minute-tutorial.md | 2 +- ant/docs/examples/common/included.xml | 2 +- ant/docs/reference-guide.md | 2 +- ci/release/Jenkinsfile | 8 ++++---- gradle/docs/5-minute-tutorial.md | 6 +++--- gradle/docs/examples/5-minute-tutorial/app/build.gradle | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ant/docs/5-minute-tutorial.md b/ant/docs/5-minute-tutorial.md index 1df26f7ab3..c503754e31 100644 --- a/ant/docs/5-minute-tutorial.md +++ b/ant/docs/5-minute-tutorial.md @@ -45,7 +45,7 @@ for the purpose of this short tutorial. ```xml - + - + diff --git a/ant/docs/reference-guide.md b/ant/docs/reference-guide.md index 1dce3ca334..4c7305c19b 100644 --- a/ant/docs/reference-guide.md +++ b/ant/docs/reference-guide.md @@ -49,7 +49,7 @@ file. In addition, you will need to define properties (or replace the variables) the jdbc driver and for the version information. See an example in the snippet below: ```xml - + diff --git a/ci/release/Jenkinsfile b/ci/release/Jenkinsfile index e55b0e39c9..771b109ccc 100644 --- a/ci/release/Jenkinsfile +++ b/ci/release/Jenkinsfile @@ -32,14 +32,14 @@ pipeline { parameters { string( name: 'RELEASE_VERSION', - defaultValue: '7.0.8.Final', - description: 'The version to be released, e.g. 7.0.8.Final.', + defaultValue: '7.0.9.Final', + description: 'The version to be released, e.g. 7.0.9.Final.', trim: true ) string( name: 'DEVELOPMENT_VERSION', - defaultValue: '7.0.9-SNAPSHOT', - description: 'The next version to be used after the release, e.g. 7.0.9-SNAPSHOT.', + defaultValue: '7.0.10-SNAPSHOT', + description: 'The next version to be used after the release, e.g. 7.0.10-SNAPSHOT.', trim: true ) booleanParam( diff --git a/gradle/docs/5-minute-tutorial.md b/gradle/docs/5-minute-tutorial.md index 62d9d63873..f30c7b48db 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 '7.0.8.Final'` to that section. +So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.9.Final'` to that section. ```groovy ... plugins { ... - id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.8.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.9.Final' } ... ``` @@ -114,7 +114,7 @@ with the contents as shown below. ```groovy plugins { id('application') - id('org.hibernate.tool.hibernate-tools-gradle') version '7.0.8.Final' + id('org.hibernate.tool.hibernate-tools-gradle') version '7.0.9.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 7ccd65188e..33f4d09cad 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 '7.0.8.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '7.0.9.Final' } repositories {