Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ci/release/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ pipeline {
parameters {
string(
name: 'RELEASE_VERSION',
defaultValue: '6.6.31.Final',
description: 'The version to be released, e.g. 6.6.31.Final.',
defaultValue: '6.6.32.Final',
description: 'The version to be released, e.g. 6.6.32.Final.',
trim: true
)
string(
name: 'DEVELOPMENT_VERSION',
defaultValue: '6.6.32-SNAPSHOT',
description: 'The next version to be used after the release, e.g. 6.6.32-SNAPSHOT.',
defaultValue: '6.6.33-SNAPSHOT',
description: 'The next version to be used after the release, e.g. 6.6.33-SNAPSHOT.',
trim: true
)
booleanParam(
Expand Down
6 changes: 3 additions & 3 deletions gradle/docs/5-minute-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.31.Final'` to that section.
So we add `id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final'` to that section.

```groovy
...
plugins {
...
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.31.Final'
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final'
}
...
```
Expand All @@ -114,7 +114,7 @@ with the contents as shown below.
```groovy
plugins {
id 'application'
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.31.Final'
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/docs/examples/5-minute-tutorial/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.31.Final'
id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.32.Final'
}

repositories {
Expand Down