File tree 5 files changed +10
-11
lines changed
5 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 17
17
NODE_VERSION : 17.7.2
18
18
jobs :
19
19
updates :
20
- name : updates java-${{ matrix.java }}
20
+ name : updates
21
21
# See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
22
22
# manual job definition:
23
23
if : startsWith(github.event.inputs.trigger, 'm')
45
45
- run : cd $GITHUB_WORKSPACE ; ./gradlew --no-daemon dependencyUpdates -Drevision=release
46
46
- run : cd $GITHUB_WORKSPACE ; ./mvnw versions:display-property-updates -P updates
47
47
check :
48
- name : updates java-${{ matrix.java }}
48
+ name : check java-${{ matrix.java }}
49
49
# See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
50
50
# automatic job definition:
51
51
if : github.event.inputs.trigger == ''
Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ tasks {
82
82
}
83
83
register(" status" ) {
84
84
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" )
87
86
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" )
89
89
90
90
val result = status.unstaged.allChanges.joinToString(separator = " " ) { " \n - $it " }
91
91
println (""" all unstaged changes: $result """ )
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ hibernateJava8Version = 5.6.7.Final
30
30
wrapperVersion = 7.4.2
31
31
32
32
querydslVersion = 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
35
35
lombokPluginVersion = 5.0.0
36
36
versionsVersion = 0.42.0
37
37
dependencyManagementVersion = 1.0.11.RELEASE
Original file line number Diff line number Diff line change @@ -6,8 +6,7 @@ val fontAwesomeVersion: String by project
6
6
val bootstrapFileInputVersion: String by project
7
7
8
8
dependencies {
9
- arrayOf(" :modules:libraries:props" ,
10
- " :modules:libraries:web-security" )
9
+ arrayOf(" :modules:libraries:props" , " :modules:libraries:web-security" )
11
10
.map { project(it) }
12
11
.forEach {
13
12
annotationProcessor(it)
Original file line number Diff line number Diff line change 76
76
<spring .boot.version>2.6.6</spring .boot.version>
77
77
<font .awesome.version>6.1.0</font .awesome.version>
78
78
<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>
81
81
<hibernate .java8.version>5.6.7.Final</hibernate .java8.version>
82
82
<bootstrap .file.input.version>5.2.5</bootstrap .file.input.version>
83
83
<versions .gradle.plugin.version>0.42.0</versions .gradle.plugin.version>
You can’t perform that action at this time.
0 commit comments