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 {
3636 parameters {
3737 string(
3838 name : ' RELEASE_VERSION' ,
39- defaultValue : ' 6.6.34 .Final' ,
40- description : ' The version to be released, e.g. 6.6.34 .Final.' ,
39+ defaultValue : ' 6.6.35 .Final' ,
40+ description : ' The version to be released, e.g. 6.6.35 .Final.' ,
4141 trim : true
4242 )
4343 string(
4444 name : ' DEVELOPMENT_VERSION' ,
45- defaultValue : ' 6.6.35 -SNAPSHOT' ,
46- description : ' The next version to be used after the release, e.g. 6.6.35 -SNAPSHOT.' ,
45+ defaultValue : ' 6.6.36 -SNAPSHOT' ,
46+ description : ' The next version to be used after the release, e.g. 6.6.36 -SNAPSHOT.' ,
4747 trim : true
4848 )
4949 booleanParam(
Original file line number Diff line number Diff line change @@ -84,13 +84,13 @@ tutorial. Now we can tackle the `build.gradle` file.
8484## Modify the generated ` app\build.gradle ` file
8585
8686We 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.34 .Final' ` to that section.
87+ So we add ` id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.35 .Final' ` to that section.
8888
8989``` groovy
9090...
9191plugins {
9292 ...
93- id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.34 .Final'
93+ id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.35 .Final'
9494}
9595...
9696```
@@ -114,7 +114,7 @@ with the contents as shown below.
114114``` groovy
115115plugins {
116116 id 'application'
117- id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.34 .Final'
117+ id 'org.hibernate.tool.hibernate-tools-gradle' version '6.6.35 .Final'
118118}
119119
120120repositories {
Original file line number Diff line number Diff line change 88plugins {
99 // Apply the application plugin to add support for building a CLI application in Java.
1010 id ' application'
11- id ' org.hibernate.tool.hibernate-tools-gradle' version ' 6.6.34 .Final'
11+ id ' org.hibernate.tool.hibernate-tools-gradle' version ' 6.6.35 .Final'
1212}
1313
1414repositories {
You can’t perform that action at this time.
0 commit comments