File tree Expand file tree Collapse file tree 5 files changed +10
-11
lines changed
Expand file tree Collapse file tree 5 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1717 NODE_VERSION : 17.7.2
1818jobs :
1919 updates :
20- name : updates java-${{ matrix.java }}
20+ name : updates
2121 # See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
2222 # manual job definition:
2323 if : startsWith(github.event.inputs.trigger, 'm')
4545 - run : cd $GITHUB_WORKSPACE ; ./gradlew --no-daemon dependencyUpdates -Drevision=release
4646 - run : cd $GITHUB_WORKSPACE ; ./mvnw versions:display-property-updates -P updates
4747 check :
48- name : updates java-${{ matrix.java }}
48+ name : check java-${{ matrix.java }}
4949 # See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
5050 # automatic job definition:
5151 if : github.event.inputs.trigger == ''
Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ tasks {
8282 }
8383 register(" status" ) {
8484 doLast {
85- val status = grgit.status() ? : return @doLast
86- println (" workspace is clean: ${status.isClean} " )
85+ val status = grgit.status() ? : return @doLast println (" no unstaged changes" )
8786
88- if (status.isClean or status.unstaged.allChanges.isEmpty()) return @doLast
87+ println (" workspace is clean: ${status.isClean} " )
88+ if (status.isClean or status.unstaged.allChanges.isEmpty()) return @doLast println (" no unstaged changes" )
8989
9090 val result = status.unstaged.allChanges.joinToString(separator = " " ) { " \n - $it " }
9191 println (""" all unstaged changes: $result """ )
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ hibernateJava8Version = 5.6.7.Final
3030wrapperVersion = 7.4.2
3131
3232querydslVersion = 1.0.10
33- grgitPluginVersion = 5.0.0-rc.3
34- reckonPluginVersion = 0.13 .1
33+ grgitPluginVersion = 5.0.0-rc.7
34+ reckonPluginVersion = 0.16 .1
3535lombokPluginVersion = 5.0.0
3636versionsVersion = 0.42.0
3737dependencyManagementVersion = 1.0.11.RELEASE
Original file line number Diff line number Diff line change @@ -6,8 +6,7 @@ val fontAwesomeVersion: String by project
66val bootstrapFileInputVersion: String by project
77
88dependencies {
9- arrayOf(" :modules:libraries:props" ,
10- " :modules:libraries:web-security" )
9+ arrayOf(" :modules:libraries:props" , " :modules:libraries:web-security" )
1110 .map { project(it) }
1211 .forEach {
1312 annotationProcessor(it)
Original file line number Diff line number Diff line change 7676 <spring .boot.version>2.6.6</spring .boot.version>
7777 <font .awesome.version>6.1.0</font .awesome.version>
7878 <lombok .plugin.version>5.0.0</lombok .plugin.version>
79- <reckon .plugin.version>0.13 .1</reckon .plugin.version>
80- <grgit .plugin.version>5.0.0-rc.3 </grgit .plugin.version>
79+ <reckon .plugin.version>0.16 .1</reckon .plugin.version>
80+ <grgit .plugin.version>5.0.0-rc.7 </grgit .plugin.version>
8181 <hibernate .java8.version>5.6.7.Final</hibernate .java8.version>
8282 <bootstrap .file.input.version>5.2.5</bootstrap .file.input.version>
8383 <versions .gradle.plugin.version>0.42.0</versions .gradle.plugin.version>
You can’t perform that action at this time.
0 commit comments