diff --git a/ant/docs/5-minute-tutorial.md b/ant/docs/5-minute-tutorial.md index 29aa5b7fd..7551dfbe9 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 ceb5c2bb3..f22dff349 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 7b10d5f98..9e590cd24 100644 --- a/ci/release/Jenkinsfile +++ b/ci/release/Jenkinsfile @@ -32,14 +32,14 @@ pipeline { parameters { string( name: 'RELEASE_VERSION', - defaultValue: '7.1.0.Final', - description: 'The version to be released, e.g. 7.1.0.Final.', + defaultValue: '7.1.1.Final', + description: 'The version to be released, e.g. 7.1.1.Final.', trim: true ) string( name: 'DEVELOPMENT_VERSION', defaultValue: '7.1.1-SNAPSHOT', - description: 'The next version to be used after the release, e.g. 7.1.1-SNAPSHOT.', + description: 'The next version to be used after the release, e.g. 7.1.2-SNAPSHOT.', trim: true ) booleanParam( diff --git a/gradle/docs/5-minute-tutorial.md b/gradle/docs/5-minute-tutorial.md index 5fcc3655e..93e9ed567 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.1.0.Final'` to that section. +So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.1.Final'` to that section. ```groovy ... plugins { ... - id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.0.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.1.Final' } ... ``` @@ -113,8 +113,8 @@ with the contents as shown below. ```groovy plugins { - id('application') - id('org.hibernate.tool.hibernate-tools-gradle') version '7.1.0.Final' + id 'application' + id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.1.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 136df23a9..1f4949bd3 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.1.0.Final' + id 'org.hibernate.tool.hibernate-tools-gradle' version '7.1.1.Final' } repositories {