File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ executeOnShell("./gradlew --version 2>/dev/null | awk '/^JVM:/ { print \$2 }'")
45
45
javaVersion = new Semver (it. trim(). replace(' _' , ' +b' ), Semver.SemverType . NPM )
46
46
}
47
47
48
- if (! javaVersion?. satisfies(' ^ 17.0.0' )) {
48
+ if (! javaVersion?. satisfies(' >= 17.0.0' )) {
49
49
ask(" You are building against Java $javaVersion and this build requires JDK 17+. Do you want to exit?: [Y]" ) {
50
50
System . exit(1 )
51
51
}
@@ -65,7 +65,7 @@ def projectProps = './gradlew :core:model:properties'.execute().text.split('\n')
65
65
66
66
def version = projectProps. version
67
67
68
- def prevTag = ' git tag --sort=-creatordate --merged' . execute(). text. split(' \n ' ). find { it. startsWith(' 4_4_ ' ) }
68
+ def prevTag = ' git tag --sort=-creatordate --merged' . execute(). text. split(' \n ' ). find { it. startsWith(' 4_5_ ' ) }
69
69
def changelog = []
70
70
executeOnShell(" git log --pretty='* %h - %s (%an, %ad)' ${ prevTag} ..HEAD" . toString()) {
71
71
println it
You can’t perform that action at this time.
0 commit comments