File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
examples/5-minute-tutorial/app Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -36,14 +36,14 @@ pipeline {
36
36
parameters {
37
37
string(
38
38
name : ' RELEASE_VERSION' ,
39
- defaultValue : ' 6.6.24 .Final' ,
40
- description : ' The version to be released, e.g. 6.6.24 .Final.' ,
39
+ defaultValue : ' 6.6.25 .Final' ,
40
+ description : ' The version to be released, e.g. 6.6.25 .Final.' ,
41
41
trim : true
42
42
)
43
43
string(
44
44
name : ' DEVELOPMENT_VERSION' ,
45
- defaultValue : ' 6.6.25 -SNAPSHOT' ,
46
- description : ' The next version to be used after the release, e.g. 6.6.25 -SNAPSHOT.' ,
45
+ defaultValue : ' 6.6.26 -SNAPSHOT' ,
46
+ description : ' The next version to be used after the release, e.g. 6.6.26 -SNAPSHOT.' ,
47
47
trim : true
48
48
)
49
49
booleanParam(
Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file.
84
84
## Modify the generated ` app\build.gradle ` file
85
85
86
86
We have to specify the use of the Gradle plugin in the ` plugin ` section of the ` build.gradle ` file.
87
- So we add ` id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24 .Final' ` to that section.
87
+ So we add ` id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25 .Final' ` to that section.
88
88
89
89
``` groovy
90
90
...
91
91
plugins {
92
92
...
93
- id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24 .Final'
93
+ id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25 .Final'
94
94
}
95
95
...
96
96
```
@@ -114,7 +114,7 @@ with the contents as shown below.
114
114
``` groovy
115
115
plugins {
116
116
id 'application'
117
- id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.24 .Final'
117
+ id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.25 .Final'
118
118
}
119
119
120
120
repositories {
Original file line number Diff line number Diff line change 8
8
plugins {
9
9
// Apply the application plugin to add support for building a CLI application in Java.
10
10
id ' application'
11
- id ' org.hibernate.tool.hibernate-tools-gradle' version ' 6.6.24 .Final'
11
+ id ' org.hibernate.tool.hibernate-tools-gradle' version ' 6.6.25 .Final'
12
12
}
13
13
14
14
repositories {
You can’t perform that action at this time.
0 commit comments